Skip to content

Commit

Permalink
Update find command
Browse files Browse the repository at this point in the history
  • Loading branch information
Tan Yi Xian committed Oct 28, 2022
1 parent b0093b4 commit 941b255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/foodrem/commons/enums/CommandType.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ public String getUsage() {
return getCommandWord() + ": Finds all items in FoodRem whose names contain substrings of any of "
+ "the KEYWORDS (case-insensitive).\n\n"
+ "Format:\n"
+ getCommandWord() + " KEYWORD\n\n"
+ getCommandWord() + " KEYWORD [KEYWORDS]...\n\n"
+ "Examples:\n"
+ getCommandWord() + " Potatoes\n"
+ getCommandWord() + " Carrots";
+ getCommandWord() + " Potatoes Carrots Cucumbers";
}
},
INCREMENT_COMMAND("inc") {
Expand Down

0 comments on commit 941b255

Please sign in to comment.