From 2372ea405c6c67393e402282bf3380c3b007776b Mon Sep 17 00:00:00 2001 From: Ryan Southgate Date: Thu, 2 Oct 2025 10:52:20 +0100 Subject: [PATCH] docs: typo (#3051) --- packages/docs/cookbook/composing-stores.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/cookbook/composing-stores.md b/packages/docs/cookbook/composing-stores.md index de89b99b..1463737d 100644 --- a/packages/docs/cookbook/composing-stores.md +++ b/packages/docs/cookbook/composing-stores.md @@ -4,7 +4,7 @@ Composing stores is about having stores that use each other, and this is supported in Pinia. There is one rule to follow: -If **two or more stores use each other**, they cannot create an infinite loop through _getters_ or _actions_. They cannot **both** directly read each other state in their setup function: +If **two or more stores use each other**, they cannot create an infinite loop through _getters_ or _actions_. They cannot **both** directly read each other's state in their setup function: ```js const useX = defineStore('x', () => { -- 2.47.3