Skip to content

Commit

Permalink
Fix DeleteCommand usage message (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeJuice7 authored and wn committed Oct 19, 2018
1 parent af75cb9 commit c0a2b34
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package seedu.address.logic.commands;

import static java.util.Objects.requireNonNull;
import static seedu.address.logic.parser.CliSyntax.PREFIX_INDEX;
import static seedu.address.logic.parser.CliSyntax.PREFIX_PASSWORD;

import java.util.List;

Expand All @@ -21,7 +23,7 @@ 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) + PREFIX_PASSWORD + PASSWORD\n"
+ "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 c0a2b34

Please sign in to comment.