Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix list messages #237

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/seedu/hirehub/logic/Messages.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ public class Messages {
public static final String MESSAGE_INVALID_PERSON_DISPLAYED_INDEX = "The person index provided is invalid";
public static final String MESSAGE_INVALID_APPLICATION_DISPLAYED_INDEX = "The application index provided is"
+ " invalid";
public static final String MESSAGE_PERSONS_LISTED_OVERVIEW = "%1$d persons listed!";
public static final String MESSAGE_JOBS_LISTED_OVERVIEW = "%1$d jobs listed!";
public static final String MESSAGE_APPLICATIONS_LISTED_OVERVIEW = "%1$d applications listed!";
public static final String MESSAGE_PERSONS_LISTED_OVERVIEW = "%1$d person(s) listed!";
public static final String MESSAGE_JOBS_LISTED_OVERVIEW = "%1$d job(s) listed!";
public static final String MESSAGE_APPLICATIONS_LISTED_OVERVIEW = "%1$d application(s) listed!";
public static final String MESSAGE_DUPLICATE_FIELDS =
"Multiple values specified for the following single-valued field(s): ";
public static final String MESSAGE_INVALID_JOB_DISPLAYED_INDEX = "The job index provided is invalid";
Expand Down
Loading