Skip to content

Commit d7301a9

Browse files
committed
Fix datetime format
1 parent f24a032 commit d7301a9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/DeveloperGuide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Classes used by multiple components are in the `seedu.addressbook.commons` packa
182182
This section describes some noteworthy details on how certain features are implemented.
183183

184184
## Date Format
185-
DietLAH! uses the following date format for command inputs: `d Mmm yyyy` which is clearer to interpret and reduces the chances of typos. Refer to the table below for more information:
185+
DietLAH! uses the following date format for command inputs: `dd Mmm yyyy` which is clearer to interpret and reduces the chances of typos. Refer to the table below for more information:
186186

187187
Legend | Description
188188
-------|-------------
@@ -456,13 +456,13 @@ The following activity diagram summarizes what happens when a user executes a `f
456456
For the user's convenience, there are 3 scenarios for recording food intake.
457457

458458
1. Add `FoodIntake` for new `Food` not currently in the `UniqueFoodList`.<br/>
459-
Example: `food_intake_add d/dd MMM yyy n/FOOD_NAME c/CARBOS f/FATS p/PROTEINS`
459+
Example: `food_intake_add d/dd Mmm yyy n/FOOD_NAME c/CARBOS f/FATS p/PROTEINS`
460460

461461
2. Add `FoodIntake` using existing `Food` in the `UniqueFoodList` and update its nutrient values.<br/>
462-
Example: `food_intake_add d/dd MMM yyy n/FOOD_NAME p/PROTEINS <at least 1 nutrient value>`
462+
Example: `food_intake_add d/dd Mmm yyy n/FOOD_NAME p/PROTEINS <at least 1 nutrient value>`
463463

464464
3. Add `FoodIntake` using existing `Food` in the `UniqueFoodList` without updating its values.<br/>
465-
Example: `food_intake_add d/dd MMM yyy n/FOOD_NAME`
465+
Example: `food_intake_add d/dd Mmm yyy n/FOOD_NAME`
466466

467467
#### Implementation:
468468

@@ -502,7 +502,7 @@ The following activity diagram summarizes what happens when a user executes a `f
502502

503503
The user can delete food intakes already added to the application by providing the food name, and date of intake.
504504

505-
Example: `food_intake_delete d/dd MMM yyy n/FOOD_NAME`
505+
Example: `food_intake_delete d/dd Mmm yyy n/FOOD_NAME`
506506

507507
#### Implementation:
508508

@@ -520,7 +520,7 @@ The following activity diagram summarizes what happens when a user executes a `f
520520

521521
The user can update the nutrient values of previously recorded food intakes. At least 1 nutrient value must be provided to be updated and values not provided will remain unchanged.
522522

523-
Example: `food_intake_update d/dd MMM yyy n/FOOD_NAME p/PROTEINS <at least 1 nutrient value>`
523+
Example: `food_intake_update d/dd Mmm yyy n/FOOD_NAME p/PROTEINS <at least 1 nutrient value>`
524524

525525
#### Implementation:
526526

0 commit comments

Comments
 (0)