Skip to content

Commit

Permalink
Merge pull request AY2324S1-CS2103-F13-2#81 from nixonwidjaja/tiny-fix
Browse files Browse the repository at this point in the history
Small fix
  • Loading branch information
nixonwidjaja committed Oct 19, 2023
2 parents c55fd01 + 6c27ca0 commit 8c0305e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/seedu/address/logic/commands/ViewCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ public class ViewCommand extends Command {
public static final String COMMAND_WORD = "view";
public static final String WRONG_PREFIX = "ViewCommand provides "
+ "overview of employee(s)'s attributes.\n"
+ "Allowed Formats: n/, a/, e/, p/, s/, b/, d/, dob/.\n"
+ "Example: view n/1,2";
+ "Allowed Formats: n/, a/, e/, p/, s/, b/, d/, dob/.\n"
+ "Example: view n/1,2 displays employees with list’s index of 1 and 2 respective salaries.";
public static final String EXCESS_PREFIX = "Kindly input only one prefix.\n"
+ "Allowed Format: n/, a/, e/, p/, s/, b/, d/, dob/.\n"
+ "Example: view n/1,2";
+ "Example: view n/1,2 displays employees with list’s index of 1 and 2 respective salaries.";

public final HashMap<String, List<Index>> references;

Expand Down

0 comments on commit 8c0305e

Please sign in to comment.