Skip to content

Commit 8b24127

Browse files
committed
Fix grammar and space error in addpolicy and deletepolicy
1 parent 97d5d4f commit 8b24127

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/seedu/address/logic/commands/DeletePolicyCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class DeletePolicyCommand extends Command {
2323
public static final String COMMAND_WORD = "deletepolicy";
2424

2525
public static final String MESSAGE_USAGE = COMMAND_WORD + ": Deletes a policy from the policy list of the client"
26-
+ "identified by the index number used in the displayed client list.\n"
26+
+ " identified by the index number used in the displayed client list.\n"
2727
+ "Parameters: "
2828
+ "INDEX (must be a positive integer) "
2929
+ PREFIX_POLICYID + "POLICYID\n"

src/main/java/seedu/address/model/policy/Policy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class Policy {
1616
* The constant MESSAGE_CONSTRAINTS_ID.
1717
*/
1818
public static final String MESSAGE_CONSTRAINTS_ID =
19-
"Policy ID should only contain numbers, and it should be at least 1 digits long";
19+
"Policy ID should only contain numbers, and it should be at least 1 digit long";
2020
/**
2121
* The constant VALIDATION_NAME_REGEX.
2222
*/

0 commit comments

Comments
 (0)