Skip to content

Commit

Permalink
Improve Error Message for Unknown Commands
Browse files Browse the repository at this point in the history
  • Loading branch information
SlothyCat committed Nov 7, 2024
1 parent 67c59ae commit 4bedce2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/seedu/address/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
*/
public class Messages {

public static final String MESSAGE_UNKNOWN_COMMAND = "Unknown command";
public static final String MESSAGE_UNKNOWN_COMMAND = "Unknown command"
+ "\nEnter help to access User Guide if needed";
public static final String MESSAGE_INVALID_COMMAND_FORMAT = "Invalid command format! \n%1$s";
public static final String MESSAGE_INVALID_PERSON_DISPLAYED_INDEX = "The person index provided is invalid";
public static final String MESSAGE_PERSONS_LISTED_OVERVIEW = "%1$d persons listed!";
Expand Down

0 comments on commit 4bedce2

Please sign in to comment.