Skip to content

Commit

Permalink
Fix minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jessica2828 committed Oct 9, 2024
1 parent b423e24 commit 4165be7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/seedu/address/logic/commands/AddCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ public class AddCommand extends Command {
+ PREFIX_COURSE + "COURSE "
+ PREFIX_TAG + "TAG\n"
+ "Example: " + COMMAND_WORD + " "
+ PREFIX_STUDENTID + "12345678"
+ PREFIX_STUDENTID + "12345678 "
+ PREFIX_NAME + "John Doe "
+ PREFIX_PHONE + "98765432 "
+ PREFIX_EMAIL + "[email protected] "
+ PREFIX_ADDRESS + "311, Clementi Ave 2, #02-25 "
+ PREFIX_COURSE + "Computer Science"
+ PREFIX_TAG + "Student";
+ PREFIX_COURSE + "Computer Science "
+ PREFIX_TAG + "Student ";


public static final String MESSAGE_SUCCESS = "New person added: %1$s";
Expand Down

0 comments on commit 4165be7

Please sign in to comment.