From 2f22a776a3c135bbe573d1c4d2d6cb55582e7e66 Mon Sep 17 00:00:00 2001 From: Liu Muchen Date: Mon, 10 Apr 2023 23:23:30 +0800 Subject: [PATCH 1/2] Fix UG error --- docs/UserGuide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index cc38f1d9022..ed668cf79c1 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -420,7 +420,7 @@ with another existing data in the data list will not be successful. Here's how w |------------|-----------------------------------------------------------------------------| | Suppliers | they have the same phone numbers | | Orders | all the parameters (excluding `STATUS`) are the same (with matching cases). | -| Tasks | they have the same task names (case-insensitive) and deadlines. | +| Tasks | they have the same task names (case-sensitive) and deadlines. | | Menu items | they have the same item names (with matching cases). |
From c61f1b1dafef55659fea9dd95abd2030c2c38171 Mon Sep 17 00:00:00 2001 From: Liu Muchen Date: Mon, 10 Apr 2023 23:26:08 +0800 Subject: [PATCH 2/2] Fix UG error --- docs/UserGuide.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index ed668cf79c1..c7908a97caa 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -416,12 +416,12 @@ Menu Item Card consists of the following components: Duplicate data are not allowed. Hence, adding of duplicate data or editing of an existing data such that it matches with another existing data in the data list will not be successful. Here's how we check for duplicates: -| Any two | are considered to be duplicates if | -|------------|-----------------------------------------------------------------------------| -| Suppliers | they have the same phone numbers | -| Orders | all the parameters (excluding `STATUS`) are the same (with matching cases). | -| Tasks | they have the same task names (case-sensitive) and deadlines. | -| Menu items | they have the same item names (with matching cases). | +| Any two | are considered to be duplicates if | +|------------|-------------------------------------------------------------------------------| +| Suppliers | they have the same phone numbers | +| Orders | all the parameters (excluding `STATUS`) are the same (with matching cases). | +| Tasks | they have the same task names (with matching cases) and deadlines. | +| Menu items | they have the same item names (with matching cases). |