Skip to content

Commit

Permalink
Fix minor typing errors for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kswk committed Sep 12, 2020
1 parent 92c2c1a commit a9a8699
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/main/java/duke/Ui.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ public class Ui {
+ " a certain deadline into the task list.";
public static final String DONE_DESCRIPTION = "'done [number]'"
+ " - Marks the task corresponding with the task index"
+ "in the task list as done";
+ " in the task list as done";
public static final String DELETE_DESCRIPTION = "'delete [number]'"
+ "- Deletes the task corresponding with the task index"
+ "in the task list.";
+ " in the task list.";
public static final String EVENT_DESCRIPTION = "'event [task] /at "
+ "[date and time]' - Adds an event that is to be attended into "
+ "the task list.";
Expand All @@ -41,7 +41,7 @@ public class Ui {
* @return String farewell message.
*/
public String printFarewell() {
return "Thanks for chatting with me, "
return "Thanks for using this bot, "
+ "see you soon!\n"
+ BORDER;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/duke/exception/DukeInvalidDateException.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class DukeInvalidDateException extends DukeException {
public DukeInvalidDateException(String command) {
super("Please enter a valid date for "
+ command + "!\nDate and time format"
+ "should be 'dd/mm/yyyy 24h-time'"
+ " should be 'dd/mm/yyyy 24h-time'"
+ "\n(eg. 01/01/2020 1900)");
}
}

0 comments on commit a9a8699

Please sign in to comment.