From 6f197be37384f7a36b3a6722312153c37fe16365 Mon Sep 17 00:00:00 2001 From: Kobot7 Date: Sat, 13 Apr 2024 13:30:40 +0800 Subject: [PATCH 1/4] Fix list usage rendering in table --- docs/UserGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index fbab791d29..a7e2f40648 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -736,7 +736,7 @@ This section provides a quick overview of all the commands. For more detailed in |-----------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------| | [`help [COMMAND]`](#viewing-help-help) | Provides command details for all or specific commands | | [`new n/PRODUCT_NAME q/INITIAL_QUANTITY [p/PRICE] [d/DESCRIPTION]`](#adding-a-new-product-new) | Creates a new product | -| [`list [-sn\|-sq]`](#listing-all-products-list) | Lists all products in the inventory | +| [list [-sn\|-sq]](#listing-all-products-list) | Lists all products in the inventory | | [`edit PID [n/PRODUCT_NAME] [q/QUANTITY] [d/DESCRIPTION] [p/PRICE]`](#editing-product-details-edit) | Edits an existing product’s field | | [`inflow PID a/QUANTITY`](#increasing-a-product-quantity-inflow) | Increases the quantity of an existing product in the inventory at the specific PID | | [`outflow PID a/QUANTITY`](#decreasing-a-product-quantity-outflow) | Decreases the quantity of an existing product in the inventory at the specific PID | From bf340e75c94e58a107bd72afbd267a2f475e7f2b Mon Sep 17 00:00:00 2001 From: Kobot7 Date: Sat, 13 Apr 2024 13:38:24 +0800 Subject: [PATCH 2/4] Update rendering of vertical bar --- docs/UserGuide.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index a7e2f40648..037e64464d 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -146,8 +146,7 @@ Format: `help [COMMAND]` | `COMMAND` | The command for which you wish to display the help page | - Must be a valid command keyword.
- If `COMMAND` is left empty, command details for all commands will be displayed.
- List of valid command keywords: help, new, list, edit, delete, inflow, outflow, history, find, exit |
-:information_source: Note:
-COMMAND is case-insensitive.
+:information_source: Note: COMMAND is case-insensitive.
e.g. help will be considered the same as HELP and hELP.
@@ -736,7 +735,7 @@ This section provides a quick overview of all the commands. For more detailed in |-----------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------| | [`help [COMMAND]`](#viewing-help-help) | Provides command details for all or specific commands | | [`new n/PRODUCT_NAME q/INITIAL_QUANTITY [p/PRICE] [d/DESCRIPTION]`](#adding-a-new-product-new) | Creates a new product | -| [list [-sn\|-sq]](#listing-all-products-list) | Lists all products in the inventory | +| [list [-sn|-sq]](#listing-all-products-list) | Lists all products in the inventory | | [`edit PID [n/PRODUCT_NAME] [q/QUANTITY] [d/DESCRIPTION] [p/PRICE]`](#editing-product-details-edit) | Edits an existing product’s field | | [`inflow PID a/QUANTITY`](#increasing-a-product-quantity-inflow) | Increases the quantity of an existing product in the inventory at the specific PID | | [`outflow PID a/QUANTITY`](#decreasing-a-product-quantity-outflow) | Decreases the quantity of an existing product in the inventory at the specific PID | From 2af2c3d085a471787c6c4a961070ae3a4961b69c Mon Sep 17 00:00:00 2001 From: Kobot7 Date: Sat, 13 Apr 2024 13:41:22 +0800 Subject: [PATCH 3/4] Fix missing rendering of whitespace --- docs/UserGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index 037e64464d..4072752e29 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -710,7 +710,7 @@ StockPal inventory data is saved automatically as a CSV file `[JAR file location
:information_source: Note: Allowed characters to use when editing the data file:
-a-z, A-Z, 0-9, , (), [], ,, ., -, _ +a-z, A-Z, 0-9,  , (), [], ,, ., -, _
From ebf5c9951e637b8ce080cf099ff7677170879e14 Mon Sep 17 00:00:00 2001 From: Kobot7 Date: Sat, 13 Apr 2024 13:45:37 +0800 Subject: [PATCH 4/4] Remove indentation for inflow input example --- docs/UserGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index 4072752e29..d16b1318bf 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -425,7 +425,7 @@ Context: - Current `QUANTITY` of `Curve Ruler` is 35. - Now, you have 10 new incoming stocks for `Curve Ruler` and you wish to update the quantity. - Input: +Input: ``` inflow 2 a/10 ```