Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
zoebelle-pang committed Apr 14, 2024
1 parent da3f11d commit 6836cf7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ TutorsGo is a **desktop app for tutors to manage student details, optimized for

* At most 1 `GRADE` and 1 `SUBJECT` can be assigned per student.

* `PAYMENT` should either be `Paid` or `Not Paid`
* `PAYMENT` should either be `Paid` or `Not Paid` with case-insensitive input. (i.e., `paid` or `PAID`)

* `ATTENDANCE` should either be `Present` or `Absent`
* `ATTENDANCE` should either be `Present` or `Absent` with case-insensitive input. (i.e., `present` or `PRESENT`)

* `DateTime` parameter should be in yyyy-mm-dd hhmm and a valid date i.e. `2024-03-02 1800`

Expand Down Expand Up @@ -181,8 +181,9 @@ Categorise students who has `Paid` or `Not paid`

Format: `payment [pa/PAYMENT]`

* The search is case-insensitive. e.g `paid` will match `PAID`
* Only full words will be matched e.g. `Not paid` will not match `Not p`
* The search is case-insensitive. (i.e. `paid` will match `PAID`)
* Only full words will be matched. (i.e. `Not paid` will not match `Not p`)
* The displayed output matches the user's input exactly. (i.e., if the user inputs `PaId` it will be displayed as `PaId`)

### View Schedule : `view`

Expand Down Expand Up @@ -294,7 +295,7 @@ Action | Format, Examples
**Edit** | `edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]…​`<br> e.g.,`edit 2 n/James Lee e/jameslee@example.com`
**Find** | `find KEYWORD [MORE_KEYWORDS]`<br> e.g., `find James Jake`
**Filter**| `filter [g/GRADE] [s/SUBJECT]`<br>e.g., `filter g/A s/English`
**Payment**| `payment [pa/PAYMENT]`<br>e.g., `payment pa/Paid`
**Payment**| `payment pa/PAYMENT`<br>e.g., `payment pa/Paid`
**View Schedule**|`view`
**history**|`history`
**List** | `list`
Expand Down

0 comments on commit 6836cf7

Please sign in to comment.