From eba545396a9018f06768446eec82bbcbad0733cc Mon Sep 17 00:00:00 2001 From: antonTan96 Date: Fri, 27 Oct 2023 12:32:10 +0800 Subject: [PATCH] Fix spelling error of Developer Guide --- docs/DeveloperGuide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 6d583bca90a..7ddfcdcc8db 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -162,9 +162,9 @@ Given below is an example usage scenario and the internal changes that happen at Step 1. The user launches the application. All employees and projects will be shown to the user. -Step 2. The user executes `addP pr/Project1 em/1` to add a new `Project` called `Project1` with the 1st `Employee` on the list as a member. `LogicManager` will call `TaskHubParser#parse(input)` to extract the parameters and pass it to an `AddProjectParser`. +Step 2. The user executes `addP pr/Project1 em/1` to add a new `Project` called `Project1` with the 1st `Employee` on the list as a member. `LogicManager` will call `TaskHubParser#parse(input)` to extract the parameters and pass it to an `AddProjectCommandParser`. -Step 3. `TaskHubParser` will call `AddProjectParser#parse(arguments)` to produce a `AddProjectCommand` to be executed by the `LogicManager`. +Step 3. `TaskHubParser` will call `AddProjectCommandParser#parse(arguments)` to produce a `AddProjectCommand` to be executed by the `LogicManager`. Step 4. `LogicManager` calls `AddProjectCommand#execute(model)` to produce a `CommandResult `to be logged.