Skip to content

Commit

Permalink
Fix bugs related to Comment / String
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyLCK committed Mar 26, 2024
1 parent 2753db4 commit 5b579a1
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 @@ -19,7 +19,7 @@ public class SortCommand extends PersonCommand {

public static final String MESSAGE_USAGE = COMMAND_WORD
+ ": sorts people according to an attribute and displays the sorted person list.\n"
+ "Parameters: PREFIX (corresponds to each person's attribute e.g. /n for Name)\n"
+ "Parameters: PREFIX (corresponds to each person's attribute e.g. n/ for Name)\n"
+ "Example: " + COMMAND_WORD + " n/";

private final String prefix;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/address/testutil/TypicalPersons.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static AddressBook getTypicalAddressBook() {
}

/**
* Returns an {@code AddressBook} with all the typical persons in randomized order.
* Returns an {@code AddressBook} with all the typical persons in reversed order.
*/
public static AddressBook getTypicalReversedAddressBook() {
AddressBook ab = new AddressBook();
Expand Down

0 comments on commit 5b579a1

Please sign in to comment.