Skip to content

Commit d12f3d6

Browse files
authored
Merge pull request #370 from Shruthiiii03/branch-UG-Last-Edits
Update UG and DG
2 parents 6aab368 + 6fb213f commit d12f3d6

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

docs/DeveloperGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1291,7 +1291,6 @@ testers are expected to do more *exploratory* testing.
12911291

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

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

13051304
### Filter
13061305
* Allow filtering by phone numbers using predicates less than 3 digits long.
1306+
* 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`
13071307

13081308
### Sort
13091309
* Sort in descending order.

docs/UserGuide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Format: `filter [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [c/CLASS] [s/SEX
165165
* **Single Predicate with Multiple Values**: an `OR` search is run.
166166
* 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.
167167

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

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

177177
* Reversing the order of phone numbers, `filter n/Alex Bernice p/92443567 99999999` still returns Alex and Bernice.
178178
* e.g. `filter n/Alex Bernice p/99999999 92443567 88888888`, only Alex and Bernice are returned.
179-
* 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.
179+
* 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.
180180

181181

182182
Examples:
@@ -212,7 +212,7 @@ Format: `addEcName INDEX en/[ECNAME]`
212212
* Adds the emergency contact's name `ECNAME` to the person at the specified `INDEX`
213213
* Deletes the emergency contact's name at the specified `INDEX`
214214
* The index **must be a positive integer** 1, 2, 3, …​
215-
* 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`).
215+
* 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`).
216216

217217
Examples:
218218
* `addEcName 1 en/John Doe` to add the emergency contact's name "John Doe" to the 1st person in the list.

src/main/resources/view/TableStyle.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)