From 8a20a63888ea47161dd8852806629cbb74bce28a Mon Sep 17 00:00:00 2001 From: zaidansani Date: Mon, 11 Nov 2024 11:59:51 +0800 Subject: [PATCH 1/4] Fix typo --- docs/UserGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index a91cf97e788..0b3a1b5c282 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -549,7 +549,7 @@ You can manage the appointments through different commands, which can be seen in **Notes:** -1. The date and time inputs are resolved "smartly" - meaning that certain incorrect dates will be allowed, e.g. `2025-02-29 12:00` will be parsed as `2024-02-28 12:00`. +1. The date and time inputs are resolved "smartly" - meaning that certain incorrect dates will be allowed, e.g. `2025-02-29 12:00` will be parsed as `2025-02-28 12:00`.
From 7535fef3285af909bf08313170423cc76c0dcecc Mon Sep 17 00:00:00 2001 From: Vangmay Sachan Date: Mon, 11 Nov 2024 13:02:46 +0800 Subject: [PATCH 2/4] Add consistent full stops --- docs/UserGuide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index ce121191f4b..6c24bad1a70 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -419,7 +419,7 @@ Edits an existing patient in DocTrack. -**Tip:** When trying to add tags while keeping existing tags, remember to type in all the pre-existing tags with your new tags +**Tip:** When trying to add tags while keeping existing tags, remember to type in all the pre-existing tags with your new tags. @@ -491,7 +491,7 @@ Note that deleting a person will also delete all related appointments. -**Tip:** Make you have the correct index of the patient before deleting. Use `list person` to check +**Tip:** Make sure you have the correct index of the patient before deleting. Use `list person` to check. @@ -684,7 +684,7 @@ You can find appointments whose person names and / or dates contain any of the g -**Tip:** Use the `find appt` command to filter out appointments for a certain day or patient +**Tip:** Use the `find appt` command to filter out appointments for a certain day or patient. From 34fb6a71993ab7c960a73f5bb0a3102ffc3570ba Mon Sep 17 00:00:00 2001 From: Vangmay Sachan Date: Mon, 11 Nov 2024 13:24:13 +0800 Subject: [PATCH 3/4] Add clarification --- docs/UserGuide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index ce121191f4b..539a5612321 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -213,6 +213,7 @@ and clearing persons/appointments. Here are some **key points** to keep in mind when you are using the commands: +- Appointments are sorted by date and Patients are sorted in chronological order. - You should supply **all** the fields (words in **`UPPER_CASE`**) that are needed for a command.
_**Example:** In `add person n/NAME`, **`NAME`** is a field which can be used as `add person n/John Doe`._ From 9b8bdb41cf92a6be4be7ffa1a24b62570a1ddb1f Mon Sep 17 00:00:00 2001 From: Vangmay Sachan Date: Mon, 11 Nov 2024 16:33:50 +0800 Subject: [PATCH 4/4] UG-fix-variable --- docs/DeveloperGuide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 62803f60e28..977d9317c8c 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -1059,8 +1059,8 @@ testers are expected to do more *exploratory* testing. - For a simple example, use the appointment added in the test case for adding a person. 2. Test case:`find appt n/[NAME]` 3. Expected: The list is updated to show all the appointments with names containing "[NAME]", non-case-sensitive. - - The status bar shows the following: "Found `n` appointments". - - The `n` refers to the amount of appointment for people with names containing "elmo". + - The status bar shows the following: "Found `x` appointments". + - The `x` refers to the amount of appointment for people with names containing "elmo". - The list of appointments should now only show appointments matching the criteria. ### Clearing person list