Skip to content

Commit

Permalink
Merge pull request #348 from wesho1107/javadocs-fix
Browse files Browse the repository at this point in the history
Fix javadocs
  • Loading branch information
wesho1107 committed Nov 14, 2023
2 parents c489d8b + 7be2b38 commit d33618c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package seedu.address.logic.commands.exceptions;

/**
* Represents an error which occurs during execution of a {@link Command}.
* Represents an error which occurs during execution of a command.
*/
public class CommandException extends Exception {
public CommandException(String message) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import seedu.address.model.person.Name;

/**
* Parses input arguments and creates a new CreateConsultationCommand object
* Parses input arguments and creates a new CreateConsultCommand object
*/
public class CreateConsultCommandParser implements Parser<CreateConsultCommand> {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/logic/parser/ParserUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import seedu.address.model.task.TaskProgress;

/**
* Contains utility methods used for parsing strings in the various *Parser classes.
* Contains utility methods used for parsing strings in the various Parser classes.
*/
public class ParserUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import seedu.address.model.task.TaskProgressContainsKeywordsPredicate;

/**
* Parses input arguments and creates a new FindCommand object
* Parses input arguments and creates a new ViewTasksCommand object
*/
public class ViewTasksCommandParser implements Parser<ViewTasksCommand> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import seedu.address.model.person.Person;

/**
* Tests that a {@code Session}'s {@code SessionStudents} matches any of the keywords given.
* Tests that a {@code Session}'s {@code StudentSet} matches any of the keywords given.
*/
public class SessionStudentsContainsStudentsPredicate implements Predicate<Session> {
private final Set<Person> students;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private void handleExit() {
}

/**
* Select the tab of the TabPane listTabs by an integer index tabIndex.
* Selects the tab of the TabPane listTabs by an integer index tabIndex.
*
* @param tabIndex The index of tab to be switched to.
*/
Expand Down

0 comments on commit d33618c

Please sign in to comment.