-
Notifications
You must be signed in to change notification settings - Fork 111
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
[T2A4][W15-A2] Wang Ce #254
base: master
Are you sure you want to change the base?
Conversation
ready for review |
*/ | ||
private ArrayList<String> capitalizeEachWord(ArrayList<String> stringsToBeCapitalized) { | ||
ArrayList<String> capitalizedString = new ArrayList<String>(); | ||
for(String i : stringsToBeCapitalized) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
colon here should have space on the right only, in your case:
for (String word: wordsToBeCapitalized) {
@@ -1087,6 +1110,7 @@ private static String getUsageInfoForAllCommands() { | |||
+ getUsageInfoForViewCommand() + LS | |||
+ getUsageInfoForDeleteCommand() + LS | |||
+ getUsageInfoForClearCommand() + LS | |||
+ getUsageInfoForSortCommand() + LS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good that you update the help info as well
Some comments added. Feel free to add more comment if you have any questions. Once you are done, you may close the PR after reading comments. |
No description provided.