From: JustKirill Date: Tue, 26 Oct 2021 07:02:27 +0000 (+0500) Subject: docs: typo X-Git-Tag: pinia@2.0.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1b397f1c90df8dcfbbe2f1c7c706912644fb4f7b;p=thirdparty%2Fvuejs%2Fpinia.git docs: typo Fix typo --- diff --git a/packages/docs/core-concepts/plugins.md b/packages/docs/core-concepts/plugins.md index 028d278c..91a034ce 100644 --- a/packages/docs/core-concepts/plugins.md +++ b/packages/docs/core-concepts/plugins.md @@ -336,7 +336,7 @@ declare module 'pinia' { ### Typing new creation options -When creating new options for `defineStore()`, you should extend the `DefineStoreOptionsBase`. Differently from `PiniaCustomProperties`, it only exposes two generics: the State and the Store type, allowing you to limit what can be defined. For example, you can une the names of the actions: +When creating new options for `defineStore()`, you should extend the `DefineStoreOptionsBase`. Differently from `PiniaCustomProperties`, it only exposes two generics: the State and the Store type, allowing you to limit what can be defined. For example, you can use the names of the actions: ```ts import 'pinia'