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 #129 from tengcharmaine/dg_updates
DG updates
- Loading branch information
Showing
2 changed files
with
18 additions
and
65 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
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 |
---|---|---|
|
@@ -14,10 +14,10 @@ box Model MODEL_COLOR_T1 | |
participant "m:Model" as Model MODEL_COLOR | ||
end box | ||
|
||
[-> LogicManager : execute("add n/John Doe p/12345678 e/[email protected] i/T0123456A ag/12 s/Male a/John street, block 123, #01-01") | ||
[-> LogicManager : execute("add n/John Doe p/12345678 \n e/[email protected] i/T0123456A ag/12 s/Male \n a/John street, block 123, #01-01") | ||
activate LogicManager | ||
|
||
LogicManager -> AddressBookParser : parseCommand("add n/John Doe p/12345678 e/[email protected] i/T0123456A ag/12 s/Male a/John street, block 123, #01-01") | ||
LogicManager -> AddressBookParser : parseCommand("add n/John Doe p/12345678 \n e/[email protected] i/T0123456A ag/12 s/Male \n a/John street, block 123, #01-01") | ||
activate AddressBookParser | ||
|
||
create AddCommandParser | ||
|
@@ -27,7 +27,7 @@ activate AddCommandParser | |
AddCommandParser --> AddressBookParser | ||
deactivate AddCommandParser | ||
|
||
AddressBookParser -> AddCommandParser : parse("n/John Doe p/12345678 e/[email protected] i/T0123456A ag/12 s/Male a/John street, block 123, #01-01") | ||
AddressBookParser -> AddCommandParser : parse("add n/John Doe p/12345678 \n e/[email protected] i/T0123456A ag/12 s/Male \n a/John street, block 123, #01-01") | ||
activate AddCommandParser | ||
|
||
create AddCommand | ||
|