From 9d31fa45b4660cba2ea078cbea3ff536ecce4165 Mon Sep 17 00:00:00 2001 From: XTY Date: Fri, 18 Oct 2024 13:26:05 +0800 Subject: [PATCH] Fix typo in `stores.mdx` --- src/routes/concepts/stores.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/concepts/stores.mdx b/src/routes/concepts/stores.mdx index 3ed91ec36..dad294687 100644 --- a/src/routes/concepts/stores.mdx +++ b/src/routes/concepts/stores.mdx @@ -236,7 +236,7 @@ By specifying these exact key names, you can directly retrieve the targeted info However, path syntax goes beyond string keys and offers more versatility when accessing targeted values. Instead of employing the use of just string keys, there is the option of using an array of keys. -This method grants you the ability to select multiple properties within the store, facilitating accessed to nested structures. +This method grants you the ability to select multiple properties within the store, facilitating access to nested structures. Alternatively, you can use filtering functions to access keys based on dynamic conditions or specific rules.