From: Ryan Southgate Date: Thu, 2 Oct 2025 09:52:20 +0000 (+0100) Subject: docs: typo (#3051) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2372ea405c6c67393e402282bf3380c3b007776b;p=thirdparty%2Fvuejs%2Fpinia.git docs: typo (#3051) --- 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', () => {