diff --git a/src/main/java/seedu/omnitravel/ui/Ui.java b/src/main/java/seedu/omnitravel/ui/Ui.java index 5a1baecc30..67b903aea2 100644 --- a/src/main/java/seedu/omnitravel/ui/Ui.java +++ b/src/main/java/seedu/omnitravel/ui/Ui.java @@ -71,7 +71,7 @@ public static void printNumberTooLargeException(NumberFormatException exception) } /** - * Prints out all available commands + * Prints out all available commands when the help command is given as input */ //@@author ChenKangg public static void helpCommand(){ @@ -80,26 +80,26 @@ public static void helpCommand(){ System.out.println(""); System.out.println( "1. list : List out the current list for given date sorted\n" + - "2. help: Get all commands for the chatbot\n" + - "3. bye: Exit the chatbot\n" + - "4. add \n" + - "5. accommodation \n" + - "6. food \n" + - "7. landmark \n" + - "8. delete \n" + - "9. find \n" + - "10. check \n" + - "11. uncheck \n" + - "12. tag \n" + - "13. untag \n" + - "14. update \n" + - "15. findtag \n" + - "16. findtype \n" + - "17. listtags \n" + - "18. expense \n" + - "19. removeexpense \n" + - "20. totalexpense \n" + - "21. change /from /to \n"); + "2. help: Get all commands for the chatbot\n" + + "3. bye: Exit the chatbot\n" + + "4. add \n" + + "5. accommodation \n" + + "6. food \n" + + "7. landmark \n" + + "8. delete \n" + + "9. find \n" + + "10. check \n" + + "11. uncheck \n" + + "12. tag \n" + + "13. untag \n" + + "14. update \n" + + "15. findtag \n" + + "16. findtype \n" + + "17. listtags \n" + + "18. expense \n" + + "19. removeexpense \n" + + "20. totalexpense \n" + + "21. change /from /to \n"); printLine(); }