Skip to content

Commit eba6c9e

Browse files
Update DeveloperGuide.md
1 parent caee9cb commit eba6c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/DeveloperGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ Step 2. The user enters `add_app e/[email protected] ti/job` to add an applicati
302302

303303
Step 3. `AddApplicationCommandParser#parse(String)` creates a new `AddApplicationCommand` object, which contains the email that a `Person` object should match, and the job title the `Job` should match. In this case, it contains `[email protected]` for its `email` attribute and `job` for its `title` attribute, and `PRESCREEN` for the `status` attribute by default.
304304

305-
Step 4.`AddApplicationCommand#execute(Model)` is then called in `LogicManager#execute(String)`, where the matching `Person` and `Job` are found, and an `Application` object containing the `Person` and the `Job` is created. `model#addApplication(Application)` is then called and the `Application` is added to the list of `Application`s in `model`.
305+
Step 4.`AddApplicationCommand#execute(Model)` is then called in `LogicManager#execute(String)`, where the matching `Person` and `Job` are found, and an `Application` object containing the `Person` and the `Job` is created. `model#addApplication(Application)` is then called and the `Application` is added to the list of applications in `model`.
306306

307307
**Design considerations:**
308308

0 commit comments

Comments
 (0)