Skip to content

Commit

Permalink
Merge pull request #35 from ZHANGTIANYAO1/fix-examples-display
Browse files Browse the repository at this point in the history
Fix add command example
  • Loading branch information
ZHANGTIANYAO1 authored Mar 21, 2024
2 parents 17647f2 + 9014df4 commit 42f5d80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/seedu/address/logic/commands/AddCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public class AddCommand extends Command {
+ PREFIX_PHONE + "PHONE "
+ PREFIX_EMAIL + "EMAIL "
+ PREFIX_ADDRESS + "ADDRESS "
+ PREFIX_INTERVIEWTIME + "INTERVIEW-TIME"
+ PREFIX_SALARY + "SALARY "
+ PREFIX_INTERVIEWTIME + "INTERVIEW-TIME "
+ "[" + PREFIX_SALARY + "SALARY] "
+ PREFIX_INFO + "INFO "
+ "[" + PREFIX_TAG + "TAG]...\n"
+ "[" + PREFIX_PROGRAMMING_LANGUAGE + "PROGRAMMING-LANGUAGE]...\n"
Expand All @@ -43,11 +43,11 @@ public class AddCommand extends Command {
+ PREFIX_PHONE + "98765432 "
+ PREFIX_EMAIL + "[email protected] "
+ PREFIX_ADDRESS + "311, Clementi Ave 2, #02-25 "
+ PREFIX_INTERVIEWTIME + "121220221400"
+ PREFIX_SALARY + "Salary: 0$ "
+ PREFIX_INTERVIEWTIME + "121220221400 "
+ PREFIX_SALARY + "5000 "
+ PREFIX_INFO + "Birthday: 12 May 2001 "
+ PREFIX_TAG + "friends "
+ PREFIX_TAG + "owesMoney"
+ PREFIX_TAG + "owesMoney "
+ PREFIX_PROGRAMMING_LANGUAGE + "Java";

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

0 comments on commit 42f5d80

Please sign in to comment.