Skip to content

Commit

Permalink
Clarify meeting time constraint message
Browse files Browse the repository at this point in the history
  • Loading branch information
jx124 committed Nov 1, 2023
1 parent 1992a9b commit a06a569
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/seedu/address/model/person/MeetingTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ public class MeetingTime {

// Replace uuuu in format to yyyy to not confuse users
public static final String MESSAGE_CONSTRAINTS = "Meeting time should be in the format of "
+ DATE_TIME_FORMAT.replace("u", "y");
+ DATE_TIME_FORMAT.replace("u", "y")
+ " and have a valid date and time";

public final LocalDateTime value;

Expand Down

0 comments on commit a06a569

Please sign in to comment.