Skip to content

Commit

Permalink
Merge pull request #154 from whitesnowx/ammend-message-usages
Browse files Browse the repository at this point in the history
Update Command messages
  • Loading branch information
JerryWang0000 authored Mar 28, 2024
2 parents 7760379 + f2d11ef commit 90da065
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/main/java/staffconnect/logic/commands/AddCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ public class AddCommand extends Command {
+ PREFIX_FACULTY + "Computing "
+ PREFIX_VENUE + "311, Clementi Ave 2, #02-25 "
+ PREFIX_TAG + "friends "
+ PREFIX_TAG + "owesMoney"
+ PREFIX_AVAILABILITY + "mon"
+ PREFIX_AVAILABILITY + "thur";
+ PREFIX_TAG + "owesMoney "
+ PREFIX_AVAILABILITY + "mon 12:00 14:00 "
+ PREFIX_AVAILABILITY + "thur 12:00 14:00";

public static final String MESSAGE_SUCCESS = "New person added: %1$s";
public static final String MESSAGE_DUPLICATE_PERSON = "This person already exists in the staff book";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/staffconnect/logic/commands/SortCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class SortCommand extends Command {
+ "[" + PREFIX_MODULE + "] "
+ "[" + PREFIX_FACULTY + "] "
+ "[" + PREFIX_VENUE + "] "
+ "Example: " + COMMAND_WORD + " n";
+ "Example: " + COMMAND_WORD + " " + PREFIX_NAME;

private final Comparator<Person> comparator;

Expand Down

0 comments on commit 90da065

Please sign in to comment.