Skip to content

Commit

Permalink
Tweak product website layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaxinnns committed Sep 14, 2024
1 parent 97b7617 commit 52c006d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions data/reo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ E | 0 | Training | 9pm | 11pm
T | 0 | Lab 5
D | 1 | proposal | Sep 19 2024
D | 1 | proposal | Sep 29 2024
T | 0 | class readings
3 changes: 1 addition & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Reo User Guide

// Product screenshot goes here
![Product Screenshot](./Ui.png)

// Product intro goes here
Meet Reo, the smart and intuitive chatbot designed to help you stay organized and on top of your tasks.
Whether you're managing your daily to-dos, tracking deadlines, managing your schedule or your contacts,
Reo makes it effortless. With its user-friendly interface,
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/reo/tasks/TaskParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ public String handleTodo() {
Todo toPush = new Todo(parts[1], false);
tasks.addTodo(toPush);
storage.writeFile(toPush);
return TODO_CONFIRMATION + toPush.toString() + "\n";
final String TASKS_LEFT_CONFIRMATION = "Now, you have " + tasks.getSize() + " task(s) in your list.\n";
return TODO_CONFIRMATION + toPush.toString() + "\n"
+ TASKS_LEFT_CONFIRMATION;
} catch (ArrayIndexOutOfBoundsException e) {
return TODO_ERROR;
}
Expand Down

0 comments on commit 52c006d

Please sign in to comment.