forked from nus-cs2103-AY2324S1/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.
Merge pull request #285 from xxiaoweii/add-command-ug
Fix ug bug
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -367,7 +367,8 @@ Example 4.1: `add --` | |
``` | ||
Invalid command format! | ||
add: Adds a person to the address book. | ||
Parameters: --name NAME [--role ROLE1, ...] [--contact CONTACT1, ...] [--course COURSECODE1/CLASS1, ...] | ||
Parameters: --name NAME [--role ROLE1, ...] [--contact CONTACT1, ...] | ||
[--course COURSECODE1/CLASS1, ...] | ||
Example: add --name John --role Student, TA --contact [email protected], 98765432 | ||
--course CS2103T/G06, CS2101/G06, CS2100/T24 | ||
``` | ||
|
@@ -431,7 +432,8 @@ Example 8: `add -/-name alex yeoh` | |
``` | ||
Invalid command format! | ||
add: Adds a person to the address book. | ||
Parameters: --name NAME [--role ROLE1, ...] [--contact CONTACT1, ...] [--course COURSECODE1/CLASS1, ...] | ||
Parameters: --name NAME [--role ROLE1, ...] [--contact CONTACT1, ...] | ||
[--course COURSECODE1/CLASS1, ...] | ||
Example: add --name John --role Student, TA --contact [email protected], 98765432 | ||
--course CS2103T/G06, CS2101/G06, CS2100/T24 | ||
``` | ||
|