forked from nus-cs2103-AY2425S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Update clarity of find command format
- Loading branch information
1 parent
bc12a71
commit 2b507f2
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -125,9 +125,9 @@ Examples: | |
|
||
Finds contacts whose names or/and phone numbers or/and address contain any of the given field keywords. | ||
|
||
Format: `find n/NAMEKEYWORDS p/PHONEKEYWORDS a/ADDRESSKEYWORDS` | ||
Format: `find [n/NAMEKEYWORDS] [p/PHONEKEYWORDS] [a/ADDRESSKEYWORDS]` | ||
|
||
**NOTE:** At least one field MUST be specified | ||
**NOTE:** At least one field MUST be provided | ||
e.g. `find n/Hans` or `find p/12345678` or `find a/wall street` will work | ||
e.g. `find Hans` or `find wall street` or `find` will fail | ||
* The search is case-insensitive. e.g `hans` will match `Hans` or `wall Street` will match `Wall Street` | ||
|
@@ -223,7 +223,7 @@ Action | Format, Examples | |
**Clear** | `clear` | ||
**Delete** | `delete INDEX`<br> e.g., `delete 3` | ||
**Edit** | `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]… [d/DATE_OF_LAST_VISIT]`<br> e.g.,`edit 2 n/James Lee e/[email protected]` | ||
**Find** | `find n/NAMEKEYWORD p/PHONEKEYWORD a/ADDRESSKEYWORD`<br> e.g., `find n/James Jake a/clementi street_woodlands` | ||
**Find** | `find [n/NAMEKEYWORD] [p/PHONEKEYWORD] [a/ADDRESSKEYWORD]`<br> e.g., `find n/James Jake a/clementi street_woodlands` | ||
**List** | `list` | ||
**Help** | `help` | ||
**Seed** | `seed` |