forked from nus-cs2103-AY2324S2/tp
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from Jayne1010/UpdateUGv1.2b
Update user guide for features v1.2b
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ Clinic Mate is a **desktop** app for managing contacts in a clinic, optimized fo | |
|
||
* `list` : Lists all contacts. | ||
|
||
* `add n/John Doe i/T0123456A ag/12 s/Male a/John street, block 123, #01-01` : Adds a contact named `John Doe` to the Address Book. | ||
* `add n/John Doe p/88888888 e/[email protected] i/T0123456A ag/12 s/Male a/John street, block 123, #01-01` : Adds a contact named `John Doe` to the Address Book. | ||
|
||
* `delete T0123456A` : Deletes the contact with the IC 'T0123456A' shown in the current list. | ||
|
||
|
@@ -68,20 +68,22 @@ Shows a message explaining how to access the help page. | |
|
||
Format: `help` | ||
|
||
|
||
### Adding a person: `add` | ||
|
||
Adds a person to the address book. | ||
|
||
Format: `add n/NAME i/IC_NUMBER ag/AGE s/SEX a/ADDRESS` | ||
Format: `add n/NAME p/PHONE e/EMAIL i/IC_NUMBER ag/AGE s/SEX a/ADDRESS` | ||
|
||
* A person will be uniquely identified by his/her personal identification number. | ||
* Clinic mate does not allow the same identification number to be twice. | ||
|
||
<box type="tip" seamless> | ||
|
||
**Tip:** A person can have a note included. | ||
</box> | ||
|
||
Examples: | ||
* `add n/John Doe i/T0123456A ag/12 s/Male a/John street, block 123, #01-01` | ||
* `add n/John Doe p/88888888 e/[email protected] i/T0123456A ag/12 s/Male a/John street, block 123, #01-01` | ||
|
||
### Adding a note : `addnote` | ||
|
||
|
@@ -172,7 +174,7 @@ _Details coming soon ..._ | |
|
||
Action | Format, Examples | ||
-----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ||
**Add** | `add n/NAME i/IC_NUMBER ag/AGE s/SEX a/ADDRESS` <br> e.g., `add n/John Doe i/T0123456A ag/12 s/Male a/John street, block 123, #01-01` | ||
**Add** | `add n/NAME p/PHONE e/EMAIL i/IC_NUMBER ag/AGE s/SEX a/ADDRESS` <br> e.g., `add n/John Doe p/88888888 e/[email protected] i/T0123456A ag/12 s/Male a/John street, block 123, #01-01` | ||
**Clear** | `clear` | ||
**Delete** | `delete IC_NUMBER`<br> e.g., `delete T0123456A` | ||
**AddNote** | `addnote i/IC_NUMBER n/NOTE`<br> e.g., `addnote i/T0123456A n/Patient has diabetes` | ||
|