Skip to content

Commit

Permalink
Fix errors in User Guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
danadi7 committed Sep 16, 2020
1 parent b7c947f commit a0634b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# User Guide

![Claude Screenshot](/docs/Ui.png)
![Claude Screenshot](./Ui.png)

Claude is a chatbot written in `Java 11` that can be used as a personal task manager.
The current version supports tracking of todos, events, and deadlines.
Expand All @@ -26,6 +26,7 @@ Adds a deadline-type task to the existing task list.
Format: `dateline DESCRIPTION /by DATE`
* `DESCRIPTION` should contain the description of the event to be added.
* `DATE` should contain the deadline of the task to be added, in a `YYYY-MM-DD` format.
* Duplicate tasks with the same description and deadline will not be added. Instead, an alert is show to the user.

Example:
* `dateline CS2103 iP Final Submission /by 2020-09-18`
Expand All @@ -37,6 +38,7 @@ Adds an event-type task to the existing task list.
Format: `event DESCRIPTION /at DATE`
* `DESCRIPTION` should contain the description of the event to be added.
* `DATE` should contain the date of the event to be added, in a `YYYY-MM-DD` format.
* Duplicate events with the same description and date will not be added. Instead, an alert is show to the user.

Examples:
* `event CS2103 Tutorial /on 2020-09-17`
Expand All @@ -48,6 +50,7 @@ Adds a todo-type task to the existing task list.

Format: `todo DESCRIPTION`
* `DESCRIPTION` should contain the description of the task to be added.
* Duplicate tasks with the same description will not be added. Instead, an alert is show to the user.

Example:
* `todo Catch Pokemon`
Expand Down

0 comments on commit a0634b3

Please sign in to comment.