Skip to content

Commit

Permalink
Revert "Small change to sortcommand file"
Browse files Browse the repository at this point in the history
This reverts commit ab7cbd3.
  • Loading branch information
jylow committed Nov 1, 2023
1 parent ab7cbd3 commit c2f4221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/logic/commands/SortCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public class SortCommand extends Command {
public static final String MESSAGE_USAGE = COMMAND_WORD + ": Sorts the current list based currently available "
+ "sort functions.\n"
+ "Currently available sorting variations: \n"
+ "-name (lexicographical name sort)\n -appointment (earliest timing first)\n"
+ "-sort (lexicographical name sort)\n -appointment (earliest timing first)\n"
+ "Parameters: sort [variation]...\n"
+ "Example: sort name";
+ "Example: sort sort";

private final Comparator<Person> comparator;

Expand Down

0 comments on commit c2f4221

Please sign in to comment.