You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- find: Find a task by searching for a keyword. [Level-9]
18
-
- Object-oriented. [A-MoreOOP]
19
-
- Perform JUnit testing. [A-JUnit]
20
-
- Have comments. [A-JavaDoc]
21
16
4. Command Summary
22
17
23
18
## 1. Introduction
24
19
25
-
Duke is targeted towards restaurant chefs who wants to be able to consolidate most of the things happening in their kitchen such as recipes, ingredients, expiry dates etc.
20
+
Duke is targeted towards restaurant chefs who wants to be able to consolidate most of the things happening in their kitchen such as recipes, ingredients, expiry dates etc. By using this product, you are able to order all the ingredients needed for your kitchen. Additionally, you can try out new recipes and save it in Duke. you can also view customer feedback.
26
21
27
22
## 2. Quick Start
28
23
@@ -36,59 +31,112 @@ Duke is targeted towards restaurant chefs who wants to be able to consolidate mo
### 3.7 Handle errors and invalid inputs. [Level-5]
103
+
creates a new task, event, where user enters their tasks as well the date that the task needs to be done
104
+
105
+
Format: `event`<desc> `/at` <desc>
106
+
107
+
eg. `event birthday /at multi purpose hall`, stores E|0|submit review|multi purpose hall , outputs [ED ][ ✘ ] birthday (/at: multi purpose hall)
76
108
109
+
Got it. I've added this task:
110
+
[E][✘] birthday(at: multi purpose hall)
111
+
Now you have 4 tasks in the list.
77
112
### 3.8 Load and save tasks to hard disk. [Level-7]
78
113
79
114
### 3.9 Identify dates and times. [Level-8]
80
115
81
116
### 3.10 delete: Delete a task. [Level-6]
82
117
83
-
### 3.11 Perform text UI testing. [A-TestUiTesting]
118
+
deletes a tasks that was stored in Duke regardless of it being marked as done or undone.
84
119
120
+
Format: `delete` <indx>
121
+
122
+
eg. `delete 1`, deletes the first task that is stored in Duke, if task does not exist, output an error message to user `Enter a valid task number after done, between 1 and x` (x is the total number of tasks in Duke)
123
+
124
+
Noted. I've removed this task:
125
+
[T][✓] read book
126
+
Now you have 3 tasks in the list.
85
127
### 3.12 find: Find a task by searching for a keyword. [Level-9]
86
128
87
-
### 3.13 Object-oriented. [A-MoreOOP]
129
+
finds a task in Duke which contains a specific word or description
130
+
131
+
Format: `find` <desc>
88
132
89
-
### 3.14 Perform JUnit testing. [A-JUnit]
133
+
eg. `find eggs`, iterates through all the task in Duke and if any of the tasks contains the description, output the task to the user
90
134
91
-
### 3.15 Have comments. [A-JavaDoc]
135
+
Here are the matching tasks in your list:
136
+
1.[T][✘] stock up on eggs
137
+
2.[D][✘] buy eggs(by: Monday)
138
+
3.[T][✘] create a new egg sandwich
139
+
if there are no matches, outputs `No matching tasks found!`
0 commit comments