]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
Typographical correction (#869)
authorEmmanuel Akhigbe <akhigbemmanuel@gmail.com>
Fri, 3 Dec 2021 09:15:42 +0000 (10:15 +0100)
committerGitHub <noreply@github.com>
Fri, 3 Dec 2021 09:15:42 +0000 (10:15 +0100)
packages/docs/cookbook/composing-stores.md

index 34cdbcf934070c23d2a4fffd00d29da683d00f4a..f0b4473daeacc0f8eb23145b8af3df5c92179743 100644 (file)
@@ -42,7 +42,7 @@ const useB = defineStore('b', () => {
 
 ## Nested stores
 
-Note that if one store uses an other store, **there is no need to create a new store in a separate file**, you can directly import it. Think of it as nesting.
+Note that if one store uses another store, **there is no need to create a new store in a separate file**, you can directly import it. Think of it as nesting.
 
 You can call `useOtherStore()` at the top of any getter or action: