Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tomharris committed Jun 25, 2011
1 parent a037719 commit 58263cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/koala/model/CustomerReport.java
Expand Up @@ -102,7 +102,7 @@ else if(transaction.getAcctCode().equals(Transaction.CODE_CLOSEACCOUNT) || trans
//make sure numbers are rounded and formated properly //make sure numbers are rounded and formated properly
report.append("\nTotal visits made: "); report.append("\nTotal visits made: ");
report.append(transactions.size()); report.append(transactions.size());
report.append("\nTotal added to accout: "); report.append("\nTotal added to account: ");
report.append(totalAdded.formattedString()); report.append(totalAdded.formattedString());
report.append("\nTotal spent: "); report.append("\nTotal spent: ");
report.append(totalSpent.formattedString()); report.append(totalSpent.formattedString());
Expand Down

0 comments on commit 58263cf

Please sign in to comment.