-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Branch ug #129
Branch ug #129
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
docs/UserGuide.md
Outdated
| **list all cashflows** | `list` | | ||
| **list all incomes** | `list income` | | ||
| **list all expenses** | `list expense` | | ||
| **list all recurring cashflows** | `list recurrence* | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
list recurrence
**
docs/UserGuide.md
Outdated
2. Down the latest version of `Financial Planner` from [here](http://link.to/duke). | ||
3. Copy the file to the folder you want to use as the *home folder* for Neo Chatbot. | ||
4. Open a command terminal, `cd` into the folder you put the jar file in, and use the `java -jar ip.jar` command to run the application. | ||
5. Refer to the **Features** section below for details of each command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Download**, neo chatbot?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice!
| **Display Overview** | `overview` | | ||
| **View balance** | `balance` | | ||
| **Exit program** | `exit` | | ||
| Action | Format | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
|
||
## Features | ||
|
||
{Give detailed description of each feature} | ||
### Notes about the command format |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this
#### Add income: `add income` | ||
Adds an income source to the Financial Planner. | ||
|
||
Format: `add income /a AMOUNT /t TYPE [/r DAYS] [/d DESCRIPTION]` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow! very comprehensive
@@ -77,7 +77,8 @@ public String toString() { | |||
|
|||
if (recur != 0) { | |||
string += System.lineSeparator() + " Recurring every: " + recur + " days"; | |||
string += ", starting from: " + date.format(DateTimeFormatter.ofPattern("MMM dd yyyy")); | |||
string += ", date added: " + date.format(DateTimeFormatter.ofPattern("MMM dd yyyy")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
fixes #120