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.
Fix UG issues
- Loading branch information
Showing
12 changed files
with
33 additions
and
33 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 |
---|---|---|
|
@@ -82,17 +82,17 @@ any traditional point-and-click management app. | |
Action | Format, Examples | ||
:--------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------: | ||
**[Add](#adding-a-person-add)** | `add n/NAME p/PHONE_NUMBER e/EMAIL [t/TAG]…` <br> e.g., `add n/James Ho p/91231234 e/[email protected] t/friend t/classmate` | ||
**[Clear](#clearing-all-entries--clear)** | `clear` | ||
**[Delete](#deleting-a-person--delete)** | `delete INDEX`<br> e.g., `delete 3` | ||
**[Edit](#editing-a-person--edit)** | `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [t/TAG]…`<br> e.g.,`edit 2 n/James Lee e/[email protected]` | ||
**[Find by contact information](#locating-persons-by-contact-information-find)** | `find PREFIX/KEYWORD [PREFIX/MORE_KEYWORDS]…`<br> e.g., `find n/James t/floorball` | ||
**[Delete tag](#deleting-a-persons-tag--deltag)** | `deltag INDEX t/KEYWORD` <br> e.g. `deltag 1 t/friend` | ||
**[Add tag](#adds-tags-to-a-specific-person--addtag)** | `addtag INDEX t/KEYWORD [t/MORE_TAGS]…` <br> e.g. `addtag 1 t/friend t/classmate` | ||
**[Categorize tag](#categorizing-a-tag--cattag)** | `cattag t/TAG [t/MORE_TAGS…] CATEGORY` <br> e.g. `cattag t/floorball t/mahjong activity` | ||
**[Undo action](#undo-a-command--undo)** | `undo` | ||
**[Clear](#clearing-all-entries-clear)** | `clear` | ||
**[Delete](#deleting-a-person-delete)** | `delete INDEX`<br> e.g., `delete 3` | ||
**[Edit](#editing-a-person-edit)** | `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [t/TAG]…`<br> e.g.,`edit 2 n/James Lee e/[email protected]` | ||
**[Find by contact information](#finding-persons-by-contact-information-find)** | `find PREFIX/KEYWORD [PREFIX/MORE_KEYWORDS]…`<br> e.g., `find n/James t/floorball` | ||
**[Delete tag](#deleting-a-persons-tag-deltag)** | `deltag INDEX t/KEYWORD` <br> e.g. `deltag 1 t/friend` | ||
**[Add tag](#adds-tags-to-a-specific-person-addtag)** | `addtag INDEX t/KEYWORD [t/MORE_TAGS]…` <br> e.g. `addtag 1 t/friend t/classmate` | ||
**[Categorize tag](#categorizing-a-tag-cattag)** | `cattag t/TAG [t/MORE_TAGS…] CATEGORY` <br> e.g. `cattag t/floorball t/mahjong activity` | ||
**[Undo action](#undo-a-command-undo)** | `undo` | ||
**[Redo action](#redo-a-command-redo)** | `redo` | ||
**[List](#listing-all-persons--list)** | `list` | ||
**[Help](#viewing-help--help)** | `help` | ||
**[List](#listing-all-persons-list)** | `list` | ||
**[Help](#viewing-help-help)** | `help` | ||
|
||
-------------------------------------------------------------------------------------------------------------------- | ||
|
||
|
@@ -106,7 +106,7 @@ When clicked, this hyperlink will show the help page. | |
|
||
Format: `help` | ||
|
||
### Adding a person: `add` | ||
### Adding a person : `add` | ||
|
||
Adds a person to CampusConnect. | ||
|
||
|
@@ -143,14 +143,14 @@ Format: `edit INDEX [n/NAME] [p/PHONE] [e/EMAIL] [t/TAG]…` | |
* When editing tags, the existing tags of the person will be removed, i.e. adding of tags is not cumulative. | ||
* You can remove all the person’s tags by typing `t/` without | ||
specifying any tags after it. | ||
* After editing the person, there should be no duplicate contact in the campus connect. | ||
* After editing the person, there should be no duplicate contact in CampusConnect. | ||
* Two contacts are considered duplicates if they share the same name, email, or phone number. | ||
|
||
Examples: | ||
* `edit 1 p/91234567 e/[email protected]` Edits the phone number and email address of the 1st person to be `91234567` and `[email protected]` respectively. | ||
* `edit 2 n/Betsy Crower t/` Edits the name of the 2nd person to be `Betsy Crower` and clears all existing tags. | ||
|
||
### Locating persons by contact information: `find` | ||
### Finding persons by contact information : `find` | ||
|
||
Finds persons whose names, email address, contact number, or tag contain any of the given keywords. | ||
|
||
|
@@ -258,16 +258,16 @@ Format: `undo` | |
|
||
* Reverts the state of CampusConnect to the one before the most recent command, if any. | ||
* When the oldest version of CampusConnect is reached, `undo` command will cause an exception to be thrown | ||
* Only the command that modify the data of CampusConnect can be undone. Commands such as `list` and `find` will not be undone. | ||
* Only commands that modify the data of CampusConnect can be undone. Commands such as `list` and `find` will not be undone. | ||
|
||
### Redo a command: `redo` | ||
### Redo a command : `redo` | ||
|
||
Reapplies a command that was previously undone by `undo`. | ||
|
||
Format: `redo` | ||
|
||
* Advances CampusConnect to the state it was in before the most recent `undo` command, if any. | ||
* Only the command that modify the data of CampusConnect can be redone. Commands such as `list` and `find` will not be redone. | ||
* Only commands that modify the data of CampusConnect can be redone. Commands such as `list` and `find` will not be redone. | ||
* Note: If a new command (excluding `redo` or `undo`) is executed after an `undo`, the redo history is cleared, and further `redo` will not be possible. | ||
|
||
### Clearing all entries : `clear` | ||
|
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
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
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
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
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
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
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
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
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
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
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