Skip to content

Commit af4961e

Browse files
committed
Fix merge conflict remains and addm error messsage
1 parent ee6f67d commit af4961e

2 files changed

Lines changed: 2 additions & 15 deletions

File tree

docs/DeveloperGuide.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -494,18 +494,6 @@ Users would be better able to manage their social and academic commitments by to
494494

495495
Use case ends.
496496

497-
<<<<<<< HEAD
498-
**Use case: Viewing meetings in the timetable**
499-
500-
=======
501-
>>>>>>> 6b3cdedcdc7d066e766ef5f4d6971efdb9916ac1
502-
503-
New features on V1.2
504-
5. Assign priorities to contacts
505-
6. Notes about the contact.
506-
7. Sort contacts by (priorities/personName/groups)
507-
8. Last meetup date for each contact
508-
509497
**Use case: Sort contact list**
510498

511499
**MSS**

src/main/java/seedu/address/logic/commands/meetings/AddMeetingCommand.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class AddMeetingCommand extends Command {
3131
+ PREFIX_NAME + "NAME "
3232
+ PREFIX_START_TIME + "START TIME "
3333
+ PREFIX_END_TIME + "END TIME "
34-
+ PREFIX_DESCRIPTION + "DESCRIPTION "
35-
+ PREFIX_PRIORITY + "PRIORITY "
34+
+ "[" + PREFIX_DESCRIPTION + "DESCRIPTION] "
35+
+ "[" +PREFIX_PRIORITY + "PRIORITY] "
3636
+ "[" + PREFIX_GROUP + "GROUP]..."
3737
+ "[" + PREFIX_PERSON_CONNECTION + "INDEX OF PERSON RELATED]...\n"
3838
+ "Example: " + COMMAND_WORD + " "
@@ -131,4 +131,3 @@ public boolean equals(Object other) {
131131
&& toAdd.equals(((AddMeetingCommand) other).toAdd));
132132
}
133133
}
134-

0 commit comments

Comments
 (0)