Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add case sensitivity text for DAY #137

Merged
merged 2 commits into from
Apr 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,11 @@ Adds a module's class timing to your friend in the mod contacts list.

Format: `add_timing i/INDEX m/MODULE_CODE d/DAY st/START_TIME et/END_TIME`

- The `INDEX` refers to the index number shown in the displayed friend list. The index must be a positive integer 1, 2, 3, ...
- The `MODULE_CODE` refers to the module code of the module you intend to add
- The `DAY` refers to the day of the class, i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun
- The `START_TIME` refers to the 24h start time of the class i.e. 0800, 1230, 1845, 2300
- The `END_TIME` refers to the 24h end time of the class i.e. 0900, 1430, 2045, 2359
* The `INDEX` refers to the index number shown in the displayed student list. The index must be a positive integer 1, 2, 3, ...
* The `MODULE_CODE` refers to the module code of the module you intend to add
* The `DAY` refers to the day of the class, i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun (This is case-sensitive!)
* The `START_TIME` refers to the start time of the class i.e. 0800, 1230, 1845, 2300
* The `END_TIME` refers to the end time of the class i.e. 0900, 1430, 2045, 2359

<div markdown="span" class="alert alert-warning">:bulb: **Reminder:**
You need to [add the module first](#adding-a-module-add_module) before you add the timing.
Expand Down Expand Up @@ -403,11 +403,11 @@ Deletes a module's class timing from your friend in the mod contacts list.

Format: `delete_timing i/INDEX m/MODULE_CODE d/DAY st/START_TIME et/END_TIME`

- The `INDEX` refers to the index number shown in the displayed friend list. The index must be a positive integer 1, 2, 3, ...
- The `MODULE_CODE` refers to the module code of the module you intend to add
- The `DAY` refers to the day of the class, i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun
- The `START_TIME` refers to the 24h start time of the class i.e. 0800, 1230, 1845, 2300
- The `END_TIME` refers to the 24h end time of the class i.e. 0800, 1230, 1845, 2300
* The `INDEX` refers to the index number shown in the displayed student list. The index must be a positive integer 1, 2, 3, ...
* The `MODULE_CODE` refers to the module code of the module you intend to add
* The `DAY` refers to the day of the class, i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun (This is case-sensitive!)
* The `START_TIME` refers to the start time of the class i.e. 0800, 1230, 1845, 2300
* The `END_TIME` refers to the end time of the class i.e. 0800, 1230, 1845, 2300

Examples:

Expand Down Expand Up @@ -478,9 +478,9 @@ Finds friends who are free at this given time period.

Format: `find_free_time d/DAY st/START_TIME et/END_TIME`

- The `DAY` refers to the day of the class, i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun
- The `START_TIME` refers to the start time of the class i.e. 0800, 1230, 1845, 2300
- The `END_TIME` refers to the end time of the class i.e. 0900, 1430, 2045, 2359
* The `DAY` refers to the day of the class, i.e. Mon, Tue, Wed, Thu, Fri, Sat, Sun (This is case-sensitive!)
* The `START_TIME` refers to the start time of the class i.e. 0800, 1230, 1845, 2300
* The `END_TIME` refers to the end time of the class i.e. 0900, 1430, 2045, 2359

Examples:

Expand Down
Loading