Skip to content

Commit

Permalink
Fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
wn committed Oct 17, 2018
1 parent 191bb45 commit 0c4cf51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/logic/commands/DeleteCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class DeleteCommand extends Command {
public static final String MESSAGE_USAGE = COMMAND_WORD
+ ": Deletes the loan identified by the index number used in the displayed loan list.\n"
+ "Requires a password for verification.\n"
+ "Parameters: PREFIX_INDEX + INDEX (must be a positive integer) and PREFIX_PASSWORD + PASSWORD\n"
+ "Example: " + COMMAND_WORD + " i/1 x/12345";
+ "Parameters: PREFIX_INDEX + INDEX(must be a positive integer) + PREFIX_PASSWORD + PASSWORD\n"
+ "Example: " + COMMAND_WORD + " i/1 x/a12345";

public static final String MESSAGE_DELETE_LOAN_SUCCESS = "Deleted Loan: %1$s";

Expand Down

0 comments on commit 0c4cf51

Please sign in to comment.