forked from nus-cs2103-AY2425S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-commandhistory-dg
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -230,6 +230,17 @@ delete ID | |
Examples: | ||
* `delete 12345678` will delete student contact with `ID: 12345678`. | ||
### Finding a person : `find` | ||
Finds the specified person from EduContacts and displays their details. | ||
Format: `find ID` | ||
* Finds student with the specified `ID`. | ||
Examples: | ||
* `find 12345678` will find student contact with `ID: 12345678` and display their details. | ||
### Clearing all entries : `clear` | ||
Clears all entries from EduContacts. | ||
|
@@ -313,6 +324,7 @@ Action | Format, Examples | |
**Clear** | `clear` | ||
**Delete** | `delete ID`<br> e.g., `delete 12345678` | ||
**Edit** | `edit ID [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [c/COURSE] [t/TAG]…`<br> e.g.,`edit 12345678 p/91234567 e/[email protected]` | ||
**Filter** | `find [n/NAME] [c/COURSE] [m/MODULE]`<br> e.g., `find n/James Jake` | ||
**Filter** | `filter [n/NAME] [c/COURSE] [m/MODULE]`<br> e.g., `filter n/James Jake` | ||
**Find** | `find ID`<br> e.g., `find 12345678` | ||
**List** | `list` | ||
**Help** | `help` |