Skip to content

Commit

Permalink
Update ShowCommand usage message
Browse files Browse the repository at this point in the history
  • Loading branch information
drustanyjt committed Apr 3, 2024
1 parent f8d616a commit c0fd8c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/seedu/address/logic/commands/ShowCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ public class ShowCommand extends Command {
public static final String MESSAGE_CLEAR_NOTE_SUCCESS = "Note cleared.";

public static final String MESSAGE_USAGE = COMMAND_WORD + ": Shows the note of the person whose IC matches the "
+ "specified IC (case-insensitive) and displays it.\n"
+ "If no IC is given, the displayed note panel will be cleared. \n"
+ "specified valid IC (case-insensitive) and displays it.\n"
+ "If no IC is given, the displayed note panel will be cleared.\n"
+ "Parameters: IC (optional)\n"
+ "Example (to display note): " + COMMAND_WORD + " t1234567A"
+ "Example (to display note): " + COMMAND_WORD + " t1234567A\n"
+ "Example (to clear display): " + COMMAND_WORD;
private final IdentityCardNumberMatchesPredicate icPredicate;

Expand Down

0 comments on commit c0fd8c6

Please sign in to comment.