From c991a185d6c7c6313701a855636de47fe7da2bdc Mon Sep 17 00:00:00 2001 From: Jeremy Date: Fri, 8 Nov 2024 00:33:38 +0800 Subject: [PATCH] Update UG for findclienttype section --- docs/UserGuide.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/UserGuide.md b/docs/UserGuide.md index 48790c537ea..1d93f40b860 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -295,11 +295,12 @@ A **valid** `CLIENT_TYPE` should: * Not be empty. * For eg. Just typing `find c/` without providing any `CLIENT_TYPE` will throw an error. * Not have duplicates. - * For eg. Typing `c/Plan A c/Plan A` will combine the client types into `Plan A`. + * For eg. Typing `c/Plan A Plan A` will combine the client types into `Plan A`. Examples: * `find c/Investment` returns every contact that has a `client_type` beginning with `Investment` * `find c/Invest` returns every contact that has `client_type` beginning with `Invest` +* `find c/Investment Healthcare` returns every contact that has `client_type` beginning with `Investment` and `Healthcare` * `fc Investment` returns `Investment Plan` * `fc Investment Healthcare` returns `Investment Plan` and `Healthcare Plan`