]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: typo (#3051)
authorRyan Southgate <ry8806@users.noreply.github.com>
Thu, 2 Oct 2025 09:52:20 +0000 (10:52 +0100)
committerGitHub <noreply@github.com>
Thu, 2 Oct 2025 09:52:20 +0000 (11:52 +0200)
packages/docs/cookbook/composing-stores.md

index de89b99b0378426131dbcc2b2fbf98b9859c3f9e..1463737d3ce223dacc830de268ea00717e22528b 100644 (file)
@@ -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', () => {