Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonYapzx committed Oct 27, 2022
1 parent e191f96 commit 73df69c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
14 changes: 6 additions & 8 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,18 +196,16 @@ The default date is the current date on your computer!
1. Summary of all entries in the currently shown list
* Examples: `summary`
* Expected: <br/>
Financials Summarized <br/>
Total Expenditure: 154.49 <br/>
Total Income: 250.00 <br/>
Total Balance: 95.51 <br/>
Total Expenditure: $154.49 <br/>
Total Income: $250.00 <br/>
Total Balance: $95.51 <br/>
![SummaryCommand1](images/SummaryCommand1.png)
2. Summary of all entries the specified month
* Examples: `summary mo/2022-10`
* Expected: <br/>
Financials Summarized <br/>
Total Expenditure: 4.20 <br/>
Total Income: 250.00 <br/>
Total Balance: 245.80 <br/>
Total Expenditure: $4.20 <br/>
Total Income: $250.00 <br/>
Total Balance: $245.80 <br/>
![SummaryCommand2](images/SummaryCommand2.png)
* Provides a financial summary recorded by the user in a month. The month refers to the month that is displayed to the user.
* The `MONTH` field is optional, if no month is specified, the application displays the summary for all entries.
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/seedu/pennywise/ui/HelpWindowCell.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ public HelpWindowCell() {
this("", "", "");
}

/**
* Constructor for HelpWindowCell
*/
public HelpWindowCell(String action, String format, String example) {
setAction(action);
setFormat(format);
Expand Down

0 comments on commit 73df69c

Please sign in to comment.