Skip to content

Commit

Permalink
Merge pull request #370 from Shruthiiii03/branch-UG-Last-Edits
Browse files Browse the repository at this point in the history
Update UG and DG
  • Loading branch information
gohqingkhang authored Nov 12, 2024
2 parents 6aab368 + 6fb213f commit d12f3d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,6 @@ testers are expected to do more *exploratory* testing.

### Ui
* Ui can be adjusted such that long names and phone numbers will not be truncated when added into StudentManagerPro.
* Update help command to show a command summary instead of a link to the UG.

### Sex
* Sex attribute can be adjusted to be case insensitive in the future to make it more convenient for users.
Expand All @@ -1304,6 +1303,7 @@ testers are expected to do more *exploratory* testing.

### Filter
* Allow filtering by phone numbers using predicates less than 3 digits long.
* Allow filtering for exact multi-word addresses. For example, using `filter a/Block 30 Geylang` will return only students with an address that exactly matches `Block 30 Geylang` rather than returning partial matches for individual words like `Block`, `30`, or `Geylang`

### Sort
* Sort in descending order.
Expand Down
6 changes: 3 additions & 3 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Format: `filter [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [c/CLASS] [s/SEX
* **Single Predicate with Multiple Values**: an `OR` search is run.
* e.g. `filter n/Alex Bernice` and `filter n/Alex n/Bernice` returns students with names `Alex` or `Bernice`. This will be true for all other attributes.

* **Multiple Predicates**: an `AND` search is run to return students with all attributes mentioned.
* **Multiple Predicates**: an `AND` search is run to return students with all attributes mentioned.
* e.g. `filter s/F p/99999999` returns female students with the phone number 99999999.

* **Multiple Predicates with Multiple Values**: both an `OR` and an`AND` search is run.
Expand All @@ -176,7 +176,7 @@ Format: `filter [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [c/CLASS] [s/SEX

* Reversing the order of phone numbers, `filter n/Alex Bernice p/92443567 99999999` still returns Alex and Bernice.
* e.g. `filter n/Alex Bernice p/99999999 92443567 88888888`, only Alex and Bernice are returned.
* e.g. `filter n/Alex Bernice Christine p/99999999 92443567 00000000`, only Alex and Bernice are returned, as Christine's phone number does not match as seen below.
* e.g. `filter n/Alex Bernice Christine p/99999999 92443567 00000000`, only Alex and Bernice are returned, as Christine's phone number does not match.


Examples:
Expand Down Expand Up @@ -212,7 +212,7 @@ Format: `addEcName INDEX en/[ECNAME]`
* Adds the emergency contact's name `ECNAME` to the person at the specified `INDEX`
* Deletes the emergency contact's name at the specified `INDEX`
* The index **must be a positive integer** 1, 2, 3, …​
* Names should contain only alphabets. Names with numbers are also allowed. For names with legal operators (e.g. `Jack s/o Jason`), please write the full phrase instead (e.g. `Jack son of Jason`).
* Names should contain only **alphabets**. Names with **numbers** are also allowed. For names with legal operators (e.g. `Jack s/o Jason`), please write the full phrase instead (e.g. `Jack son of Jason`).

Examples:
* `addEcName 1 en/John Doe` to add the emergency contact's name "John Doe" to the 1st person in the list.
Expand Down
4 changes: 0 additions & 4 deletions src/main/resources/view/TableStyle.css

This file was deleted.

0 comments on commit d12f3d6

Please sign in to comment.