From: Axel Uriel Martínez Castillo Date: Thu, 5 Aug 2021 19:02:18 +0000 (-0500) Subject: Fixing typo (#599) X-Git-Tag: v2.0.0-rc.4~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0da2a9c8a55af65d52b59959746016f8821e9e81;p=thirdparty%2Fvuejs%2Fpinia.git Fixing typo (#599) --- diff --git a/docs/cookbook/composing-stores.md b/docs/cookbook/composing-stores.md index 892d49a4..2ddbf270 100644 --- a/docs/cookbook/composing-stores.md +++ b/docs/cookbook/composing-stores.md @@ -6,7 +6,7 @@ If **two or more stores use each other**, you must create a new store in a **sep 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. -You can call `useOtherStore()` at the top of any getter an action: +You can call `useOtherStore()` at the top of any getter or action: ```js import { useUserStore } from './user'