Skip to content

Commit

Permalink
Fix javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
wesho1107 committed Nov 14, 2023
1 parent c489d8b commit 588d728
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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

0 comments on commit 588d728

Please sign in to comment.