Skip to content

Commit

Permalink
Make small changes to UG and DG
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandan8186 committed Nov 14, 2023
1 parent acbb038 commit 2dbb78c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ The `Project` component stores a project's data which comprises:
* The `TaskList` contains the `Task`s which have been added to the `Project`.
* The `Employee` (if applicable) in each `Task` in the `TaskList` of the project must also exist in the `UniqueEmployeeList` of the project.

***Note: For the Model, Employee and Project components, lower-level details (e.g. most class attributes and methods) have been omitted for visual clarity.


### Task component
**API** : [`Task.java`](https://github.com/AY2324S1-CS2103T-T08-3/tp/blob/master/src/main/java/seedu/address/model/task/Task.java)
Expand All @@ -180,7 +178,7 @@ The `Task` component stores a task's data which comprises:

<div markdown="span" class="alert alert-info">

:information_source: **Note:** The `Employee`, `Project` and `Task` class diagrams above have omitted some details (e.g. class methods) to improve visual clarity. Only the most important fields and associations are shown.
:information_source: **Note:** The `Model`, `Employee`, `Project` and `Task` class diagrams above have omitted some details (e.g. class methods) to improve visual clarity. Only the most important fields and associations are shown.

</div>

Expand Down
4 changes: 2 additions & 2 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ Format: `listE`
Finds employees whose names contain any of the given keywords.
Additionally, it shows only the projects that these employees are under.
Format: `findE KEYWORD [MORE_KEYWORDS]`
Format: `findE KEYWORD [MORE_KEYWORDS]…​`
* The search is case-insensitive. e.g. `hans` will match `Hans`
* The order of the keywords does not matter. e.g. `Hans Bo` will match `Bo Hans`
Expand Down Expand Up @@ -784,7 +784,7 @@ Format: `listP`
Find projects whose names contain any of the given keywords.
Additionally, it shows only the employees that are under these projects.
Format: `findP KEYWORD [MORE_KEYWORDS]`
Format: `findP KEYWORD [MORE_KEYWORDS]…​`
* The search is case-insensitive. e.g. `website` will match `Website`
* The order of the keywords does not matter. e.g. `Create Website` will match `Website Create`
Expand Down

0 comments on commit 2dbb78c

Please sign in to comment.