]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: typo
authorJustKirill <kirill-x@inbox.ru>
Tue, 26 Oct 2021 07:02:27 +0000 (12:02 +0500)
committerGitHub <noreply@github.com>
Tue, 26 Oct 2021 07:02:27 +0000 (09:02 +0200)
Fix typo

packages/docs/core-concepts/plugins.md

index 028d278cd7cf7d4866108dd0b234857e6b9f6cb1..91a034cea9615665c37e373ffbca6d0ac5364f1b 100644 (file)
@@ -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'