diff --git a/docs/DeveloperGuide.md b/docs/DeveloperGuide.md index 713889246d..38968ba3c3 100644 --- a/docs/DeveloperGuide.md +++ b/docs/DeveloperGuide.md @@ -1020,6 +1020,7 @@ process: ##### Class Attributes for `SetBudgetCommand`: + | Class Attribute | Variable Type | Relevance | |-----------------|---------------|---------------------------------------------------------------------| | expenseList | ExpenseList | Object containing the list of expenses to check against set budgets | @@ -1042,6 +1043,7 @@ The sequence of operations for an example input, `set budget c/Transport b/500`, ##### Class Attributes for `ListBudgetCommand`: + | Class Attribute | Variable Type | Relevance | |-----------------|---------------|---------------------------------------------------------------------| | expenseList | ExpenseList | Object containing the list of expenses to check against set budgets | @@ -1056,6 +1058,8 @@ budget in `ExpenseList` using `setBudget`. Similarly, `ListBudgetCommand` will f their budgets using `getBudgets`, and highlight those that are above the set budget. ##### Key Methods used from `ExpenseList` + + | Method | Return Type | Relevance | |-----------------------------|---------------|--------------------------------------------------------------------| | setBudget(category, budget) | void | Sets or updates the budget for a given category in the ExpenseList | @@ -1393,7 +1397,7 @@ type fast. It also provides the ability to deal with finances on a singular plat ### Use Case : Add a Recurring Expense List 1. User requests to add a recurring expense list with a specific name 2. BudgetBuddy creates a recurring expense list with the specified name - 3. Use Case Ends. + 3. use case ends. #### Extensions * 1a. Name is Empty @@ -1409,7 +1413,7 @@ type fast. It also provides the ability to deal with finances on a singular plat #### Extensions * 1a. The list of all recurring expense lists is empty * 1a1. BudgetBuddy states that no recurring expense lists has been added yet - * user case ends + * use case ends ### Use Case : Remove a recurring expense list diff --git a/docs/UserGuide.md b/docs/UserGuide.md index 2e86c55dff..1a5e450522 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -47,7 +47,7 @@ to deal with finances on a singular platform with ease as long as you can type f 1. Ensure that you have Java 11 installed. 2. Download the latest version of `BudgetBuddy` from [here](https://github.com/AY2324S2-CS2113-T12-3/tp). 3. Copy the file to the folder you want to use as the home folder. -4. Open command terminal, ``cd`` into the folder you put your jar file in, and use the `java -jar BudgetBuddy.jar` +4. Open command terminal, ``cd`` into the folder you put your jar file in, and use the `java -jar [CS2113-T12-3][BudgetBuddy].jar` command to run the application. diff --git a/docs/userguideimages/CurrencyConverter_ChangeUSD.PNG b/docs/userguideimages/CurrencyConverter_ChangeUSD.PNG deleted file mode 100644 index 745ebc490e..0000000000 Binary files a/docs/userguideimages/CurrencyConverter_ChangeUSD.PNG and /dev/null differ diff --git a/docs/userguideimages/CurrencyConverter_ChangeUSD.png b/docs/userguideimages/CurrencyConverter_ChangeUSD.png new file mode 100644 index 0000000000..764aec0155 Binary files /dev/null and b/docs/userguideimages/CurrencyConverter_ChangeUSD.png differ diff --git a/docs/userguideimages/CurrencyConverter_SameCurrency.PNG b/docs/userguideimages/CurrencyConverter_SameCurrency.PNG deleted file mode 100644 index 91242d657c..0000000000 Binary files a/docs/userguideimages/CurrencyConverter_SameCurrency.PNG and /dev/null differ diff --git a/docs/userguideimages/CurrencyConverter_SameCurrency.png b/docs/userguideimages/CurrencyConverter_SameCurrency.png new file mode 100644 index 0000000000..d0ad935327 Binary files /dev/null and b/docs/userguideimages/CurrencyConverter_SameCurrency.png differ diff --git a/src/main/java/seedu/budgetbuddy/Storage.java b/src/main/java/seedu/budgetbuddy/Storage.java index b73fc75239..73da4e9ab6 100644 --- a/src/main/java/seedu/budgetbuddy/Storage.java +++ b/src/main/java/seedu/budgetbuddy/Storage.java @@ -370,7 +370,7 @@ public RecurringExpenseLists loadRecurringExpensesList() throws IOException{ } catch (Exception e) { LOGGER.log(Level.INFO, "Exception successfully caught. Error has been handled"); System.out.println("Error Detected : " + e.getMessage()); - System.out.println("You Recurring Expenses File is corrupted, resetting the file...."); + System.out.println("Your Recurring Expenses File is corrupted, resetting the file...."); resetRecurringExpensesListFile(); return new RecurringExpenseLists(); } diff --git a/src/main/java/seedu/budgetbuddy/commandcreator/RecurringExpenseCommandCreator.java b/src/main/java/seedu/budgetbuddy/commandcreator/RecurringExpenseCommandCreator.java index ae925bd3b8..aae589bda0 100644 --- a/src/main/java/seedu/budgetbuddy/commandcreator/RecurringExpenseCommandCreator.java +++ b/src/main/java/seedu/budgetbuddy/commandcreator/RecurringExpenseCommandCreator.java @@ -191,7 +191,7 @@ private String getCategory(String category) throws BudgetBuddyException{ } throw new BudgetBuddyException("Please ensure the category is a valid category\n" + - "Valid Categories : Entertainment, Housing, Groceries, Utility, Transport, Other"); + "Valid Categories : Entertainment, Housing, Groceries, Utility, Transport, Others"); } /** * Parses the category from the input string