Skip to content

Commit

Permalink
Merge pull request #293 from mingyu-wan/master
Browse files Browse the repository at this point in the history
reformat dg
  • Loading branch information
mingyu-wan authored Nov 14, 2023
2 parents 110ad52 + f585ad9 commit 47a100b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@ Example Uses:
`delete-developer 3`

`delete-client 2`
<div style="page-break-after: always;"></div>

#### Implementation
Upon entry of the delete developer command for instance, a `DeleteDeveloperCommand` class is created. The `DeleteDeveloperCommand` class extends the abstract `Command` class and implements the `execute()` method. Upon execution of this method, the developer at specified **one-based index** is removed if the index provided is valid.

Expand All @@ -272,6 +274,8 @@ The following sequence diagram illustrates how the delete developer operation wo

[Scroll back to Table of Contents](#table-of-contents)

<div style="page-break-after: always;"></div>

### Delete Project Feature (`delete-project`)
#### Intended Result
Deletes a project at the specified **one-based index** of list of currently existing/found projects. Users are able to delete any project in project lists. If an index larger than or equal to the size of the project list provided, the command will not be allowed and an error will be thrown to alert user.
Expand All @@ -281,8 +285,6 @@ Example Uses:

`delete-project 2`

<div style="page-break-after: always;"></div>

#### Implementation
Upon entry of the delete project command, a `DeleteProjectCommand` class is created. The `DeleteProjectCommand` class extends the abstract `Command` class and implements the `execute()` method. Upon execution of this method, the project at specified **one-based index** is removed if the index provided is valid.

Expand Down

0 comments on commit 47a100b

Please sign in to comment.