From: Emmanuel Akhigbe Date: Fri, 3 Dec 2021 09:15:42 +0000 (+0100) Subject: Typographical correction (#869) X-Git-Tag: @pinia/testing@0.0.8~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=89bb56e804cd44c14289b6a450c4125e319687b0;p=thirdparty%2Fvuejs%2Fpinia.git Typographical correction (#869) --- diff --git a/packages/docs/cookbook/composing-stores.md b/packages/docs/cookbook/composing-stores.md index 34cdbcf9..f0b4473d 100644 --- a/packages/docs/cookbook/composing-stores.md +++ b/packages/docs/cookbook/composing-stores.md @@ -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: