Skip to content

Commit 2372ea4

Browse files
authored
docs: typo (#3051)
1 parent 2ba1a08 commit 2372ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/docs/cookbook/composing-stores.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Composing stores is about having stores that use each other, and this is supported in Pinia. There is one rule to follow:
66

7-
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:
7+
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:
88

99
```js
1010
const useX = defineStore('x', () => {

0 commit comments

Comments
 (0)