Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[T2A5][T01-Unknown]Yang Zhuohan #15

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add command
  • Loading branch information
billstark committed Aug 21, 2016
commit 3bdeb24d98d401e00f1f5ec5bb4576d94adae79e
4 changes: 4 additions & 0 deletions src/seedu/addressbook/AddressBook.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ public class AddressBook {
private static final String COMMAND_EXIT_WORD = "exit";
private static final String COMMAND_EXIT_DESC = "Exits the program.";
private static final String COMMAND_EXIT_EXAMPLE = COMMAND_EXIT_WORD;

private static final String COMMAND_SORT_WORD = "sort";
private static final String COMMAND_SORT_DESC = "Sort all the people in alphabetic order";
private static final String COMMAND_SORT_EXAMPLE = COMMAND_SORT_WORD;

private static final String DIVIDER = "===================================================";

Expand Down