You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`DIRECTION` is only restricted to the following cases:
214
215
* Sort by ascending alphabetical order : `ASC`
215
216
* Sort by descending alphabetical order : `DESC`
217
+
* These are all case-insensitive
216
218
217
219
Examples:
218
220
*`sortp by/NAME d/ASC` sorts the persons by name and present the result in ascending alphabetical order.
@@ -277,13 +279,17 @@ Examples:
277
279
278
280
### Locating meetings: `findm`
279
281
280
-
Finds meetings whose information contain any of the given keywords.
282
+
Finds meetings that satisfy all the given criteria.
281
283
282
-
Format: `findm [n/NAME] [time/TIME] [desc/DESCRIPTION] [pr/PRIORITY] [g/GROUP]...[p/INDEX OF PERSON RELATED]...`
284
+
Format: `findm [n/NAME] [time/TIME]... [desc/DESCRIPTION] [pr/PRIORITY] [g/GROUP]...[p/INDEX OF PERSON RELATED]...`
283
285
286
+
* Though all fields are optional, we require the user to enter at least one.
284
287
* The search is case-sensitive in name searching. e.g `CS2103` will not match `cs2103`
285
288
* The order of the searching filed does not matter. e.g. `findm n/CS pr/3` will be the same as `findm pr/3 n/CS`.
286
-
* Time field refers to a point of time, as long as this point of time is in between of a meeting's start time and ending time, the search will return this specific meeting.
289
+
* Time field refers to a point of time, as long as this point of time is
290
+
in between of a meeting's start time and ending time (inclusive),
291
+
the search will return this specific meeting.
292
+
* The user can enter many times. The meetings will have to satisfy all of them.
287
293
* Time field must follow YYYY-MM-DD HH:MM format.
288
294
* For other fields, the requirement is the same as addm (Adding a meeting). You can refer to the previous UG instruction.
289
295
@@ -304,7 +310,6 @@ Format: `showm INDEX`
304
310
305
311
### Sorting of meetings : `sortm`
306
312
307
-
308
313
Sorts the meetings displayed according to a specified field.
0 commit comments