Skip to content

Commit

Permalink
Update message
Browse files Browse the repository at this point in the history
  • Loading branch information
kngys committed Nov 7, 2024
1 parent 8516fb4 commit 2323bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class Messages {
"Multiple values specified for the following single-valued field(s): ";
public static final String MESSAGE_INVALID_AMOUNT = "Incorrect amount format or invalid amount!\n"
+ "Amount should be a number of up to 2 decimal places.\n"
+ "Amount should contain only digits (0-9), at most 1 decimal point (.), and at most 1 minus sign (-).\n"
+ "Amount should contain only digits (0-9), at most 1 decimal point (.) and at most 1 minus sign (-).\n"
+ "If decimal point is used, there should be at least 1 digit before and 1 digit after the decimal point.\n"
+ "If minus sign is used, it should be the first character.";
public static final String MESSAGE_INVALID_DATE_FORMAT = "Incorrect date format or invalid date!\n"
Expand Down

0 comments on commit 2323bf8

Please sign in to comment.