Skip to content

Commit

Permalink
Fix comment command successful message.
Browse files Browse the repository at this point in the history
  • Loading branch information
amosting committed Nov 10, 2023
1 parent 7bbb78b commit 9c40169
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
public class Messages {

public static final String MESSAGE_UNKNOWN_COMMAND = "Unknown command";
public static final String MESSAGE_UNKNOWN_COMMAND = "Unknown command.";
public static final String MESSAGE_INVALID_COMMAND_FORMAT = "Invalid command format! \n%1$s";
public static final String MESSAGE_INVALID_PERSON_DISPLAYED_INDEX = "Error: Invalid index. "
+ "Please enter an index within range.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class CommentCommand extends Command {
+ "Example: " + COMMAND_WORD + " 1 "
+ PREFIX_COMMENT + "Hardworking student";

public static final String MESSAGE_ADD_COMMENT_SUCCESS = "Added comment to Person: %1$s";
public static final String MESSAGE_ADD_COMMENT_SUCCESS = "Applicant has been successfully commented on.";
public static final String MESSAGE_DELETE_COMMENT_SUCCESS = "Removed comment from Person: %1$s.";

private final Index index;
Expand Down

0 comments on commit 9c40169

Please sign in to comment.