Skip to content

Commit

Permalink
Update user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
koonweee committed Oct 17, 2020
1 parent a669452 commit 86a85a4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion data/data.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
D%d%false%d%flying%d%1829-12-23
T%d%false%d%test
T%d%true%d%test
E%d%false%d%test%d%2020-12-12
D%d%false%d%test%d%2020-12-12
12 changes: 12 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,18 @@ A deadline task of name `name` due by `<yyyy-mm-dd>` will be added

Example of usage: `deadline CS2103 IP Submission /at <2025-10-29>` - adds a deadline task named "CS2103 IP Submission" due on 29th October 2025 to the list of tasks

### `done <task index>` - **Mark a task as done**

The task at the index indicated by the user will be marked as done.

Example of usage: `done 2`

### `delete <task index>` - **Delete a task**

The task at the index indicated by the user will be deleted.

Example of usage: `delete 7`

### `load` - **Choose a file to load/save to**

Jarvis prompts the user for a .txt file to load from and save tasks to
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/InvalidInputException.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class InvalidInputException extends DukeException {
public InvalidInputException() {
super("OOPS!!! I'm sorry, but I don't know what that means :-(");
super("OOPS!!! I'm sorry, but I don't know what that means :-(");
}
}

0 comments on commit 86a85a4

Please sign in to comment.