Skip to content

Commit 0cbe212

Browse files
authored
Merge pull request #131 from Kappaccinoh/finalUGedits
update UG
2 parents 1783f0d + 2d86f95 commit 0cbe212

File tree

13 files changed

+82
-68
lines changed

13 files changed

+82
-68
lines changed

docs/UserGuide.md

Lines changed: 73 additions & 58 deletions
Large diffs are not rendered by default.

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
title: "mediCLI"
1+
title: "MediCLI"
22
theme: minima
33

44
header_pages:

docs/images/addAppointment.png

44.4 KB
Loading

docs/images/addDoctor.png

30.7 KB
Loading

docs/images/addPatient.png

20.3 KB
Loading

docs/images/editPerson.png

39.2 KB
Loading

docs/images/helpMessage.png

6.44 KB
Loading

src/main/java/seedu/address/logic/commands/EditAppointmentCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class EditAppointmentCommand extends Command {
3030
+ "by the index number used in the displayed appointment list. "
3131
+ "Existing values will be overwritten by the input values.\n"
3232
+ "Parameters: INDEX (must be a positive integer) "
33-
+ "[" + PREFIX_DATE + "DATE]\n"
33+
+ PREFIX_DATE + "DATE\n"
3434
+ "Example: " + COMMAND_WORD + " 1 "
3535
+ PREFIX_DATE + "2024-04-09";
3636

src/main/java/seedu/address/logic/commands/EditCommand.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import static seedu.address.logic.parser.CliSyntax.PREFIX_NAME;
66
import static seedu.address.logic.parser.CliSyntax.PREFIX_NRIC;
77
import static seedu.address.logic.parser.CliSyntax.PREFIX_PHONE;
8-
import static seedu.address.logic.parser.CliSyntax.PREFIX_TAG;
98
import static seedu.address.model.Model.PREDICATE_SHOW_ALL_APPOINTMENTS;
109
import static seedu.address.model.Model.PREDICATE_SHOW_ALL_PERSONS;
1110

@@ -48,8 +47,7 @@ public class EditCommand extends Command {
4847
+ "[" + PREFIX_NAME + "NAME] "
4948
+ "[" + PREFIX_PHONE + "PHONE] "
5049
+ "[" + PREFIX_NRIC + "NRIC] "
51-
+ "[" + PREFIX_DOB + "DOB] "
52-
+ "[" + PREFIX_TAG + "TAG]...\n"
50+
+ "[" + PREFIX_DOB + "DOB]\n"
5351
+ "Example: " + COMMAND_WORD + " 1 "
5452
+ PREFIX_PHONE + "91234567 "
5553
+ PREFIX_NRIC + "T0123452K";

src/main/java/seedu/address/logic/commands/QueryDoctorAppointmentCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class QueryDoctorAppointmentCommand extends Command {
2020
private static final Logger logger = Logger.getLogger(QueryDoctorAppointmentCommand.class.getName());
2121

2222
public static final String MESSAGE_USAGE = COMMAND_WORD + ": Finds all appointments of doctors whose "
23-
+ "nrics/names contain any of the specified keywords (case-insensitive) and displays them as a "
23+
+ "nrics contain any of the specified keywords (case-insensitive) and displays them as a "
2424
+ "list with index numbers.\n"
2525
+ "Parameters: KEYWORD [MORE_KEYWORDS]...(Keywords can either be NRICs or Names)\n"
2626
+ "Example: " + COMMAND_WORD + " alice bob T1234567A S7654321A";

0 commit comments

Comments
 (0)