Skip to content

Commit

Permalink
Merge pull request #107 from HengFuYuen/Ui-EditDatabase
Browse files Browse the repository at this point in the history
Update help command message
  • Loading branch information
HengFuYuen authored Oct 29, 2020
2 parents 7348828 + 917c550 commit 9cd464d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/seedu/dietbook/Ui.java
Original file line number Diff line number Diff line change
Expand Up @@ -819,9 +819,9 @@ private String getFoodListRelatedCommands() {
* @return A string representation of a list of database related commands that users can input.
*/
private String getDatabaseRelatedCommands() {
return " To add a food from the database: add n/FOOD_NAME x/PORTION_SIZE" + LINE_SEPARATOR
+ " To add a food from the database consumed at a certain time: add n/FOOD_NAME "
+ "x/PORTION_SIZE yyyy-mm-ddTHH:mm" + LINE_SEPARATOR
return " [Coming Soon] To add a food from the database: add n/FOOD_NAME x/PORTION_SIZE" + LINE_SEPARATOR
+ " [Coming Soon] To add a food from the database consumed at a certain time: add "
+ "n/FOOD_NAME x/PORTION_SIZE yyyy-mm-ddTHH:mm" + LINE_SEPARATOR
+ " To view all food in the database: data" + LINE_SEPARATOR;
}

Expand Down

0 comments on commit 9cd464d

Please sign in to comment.