Skip to content

Commit

Permalink
update helpCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenKangg committed Mar 30, 2024
1 parent ff171a4 commit fc7fe61
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/main/java/seedu/duke/Ui.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,24 @@ public static void printNumberTooLargeException(NumberFormatException exception)

public static void helpCommand(){
System.out.println("These are the available commands!");
System.out.println("1. list\n2. add <insert travel activity>\n3. delete <insert activity number>\n" +
"4. find <insert keyword>\n5. help\n6. bye\n");
System.out.println("1. list\n" +
"2. help\n" +
"3. bye\n" +
"4. add <travel activity> <date> <duration> <tag>\n" +
"5. accommodation <travel activity> <date> <duration> <tag>\n" +
"6. food <travel activity> <date> <duration> <tag>\n" +
"7. landmark <travel activity> <date> <duration> <tag>\n" +
"8. delete <activity number>\n" +
"9. find <keyword>\n" +
"10. check <activity number>\n" +
"11. uncheck <activity number>\n" +
"12. tag <activity number> <tag name>\n" +
"13. untag <activity number>\n" +
"14. update <update> <date> <duration> <tag>\n" +
"15. findtag <tag name>\n" +
"16. findtype <type>\n" +
"17. expense <activity number> <expense amount>\n" +
"18. removeexpense <activity number>\n");
}

public static void printDateTimeExceptionError(){
Expand Down

0 comments on commit fc7fe61

Please sign in to comment.