Skip to content

Commit

Permalink
update command usage messages
Browse files Browse the repository at this point in the history
  • Loading branch information
whitesnowx committed Mar 28, 2024
1 parent 7760379 commit f2d11ef
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 f2d11ef

Please sign in to comment.