Skip to content

Commit

Permalink
Merge pull request #174 from yorklim/SpellingNGrammar
Browse files Browse the repository at this point in the history
Fix grammar and space error in addpolicy and deletepolicy
  • Loading branch information
ReganChoy authored Apr 9, 2024
2 parents 97d5d4f + 8b24127 commit 5ba5e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class DeletePolicyCommand extends Command {
public static final String COMMAND_WORD = "deletepolicy";

public static final String MESSAGE_USAGE = COMMAND_WORD + ": Deletes a policy from the policy list of the client"
+ "identified by the index number used in the displayed client list.\n"
+ " identified by the index number used in the displayed client list.\n"
+ "Parameters: "
+ "INDEX (must be a positive integer) "
+ PREFIX_POLICYID + "POLICYID\n"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/policy/Policy.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Policy {
* The constant MESSAGE_CONSTRAINTS_ID.
*/
public static final String MESSAGE_CONSTRAINTS_ID =
"Policy ID should only contain numbers, and it should be at least 1 digits long";
"Policy ID should only contain numbers, and it should be at least 1 digit long";
/**
* The constant VALIDATION_NAME_REGEX.
*/
Expand Down

0 comments on commit 5ba5e7c

Please sign in to comment.