-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update find command in UG #312
Update find command in UG #312
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nits, then lgtm.
docs/UserGuide.md
Outdated
* The search is case-insensitive. e.g `hans` will match `Hans`, `cs2103t` will match `CS2103T` | ||
* Can search for names and courses. Use the `n/` prefix to search for names and the `c/` prefix to search for courses. | ||
* Partial searches will be matched e.g. `Jam` will match `James` and `James Ho` | ||
* Each sequence of words not separated by `;` or a prefix will be used as a search. This means that `jam ho` will not match `James Ho` | ||
* Students matching at least one keyword will be returned (i.e. `OR` search). | ||
e.g. `Hans Bo` will return `Hans Gruber`, `Bo Yang` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A bit misleading, since in the line above it we say jam ho
will not match James Ho
. Maybe change this line to say Hans;Bo
instead of Hans Bo
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Additionally, to address #250, maybe you could say that if no keyword is given, the command will show all students?
docs/UserGuide.md
Outdated
* The search is case-insensitive. e.g `hans` will match `Hans`, `cs2103t` will match `CS2103T` | ||
* Can search for names and courses. Use the `n/` prefix to search for names and the `c/` prefix to search for courses. | ||
* Partial searches will be matched e.g. `Jam` will match `James` and `James Ho` | ||
* Each sequence of words not separated by `;` or a prefix will be used as a search. This means that `jam ho` will not match `James Ho` | ||
* Students matching at least one keyword will be returned (i.e. `OR` search). | ||
e.g. `Hans Bo` will return `Hans Gruber`, `Bo Yang` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. This Line is misleading. It definitely needs to be changed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems Better. The Find Command is very descriptive and covers all/most issues during the PE-D. LGTM
Fixes #306, fixes #292, fixes #288, fixes #287, fixes #260.
Update find command usage in user guide