]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: typo (#613)
authorBen Sheedy <web@bensheedy.com>
Fri, 13 Aug 2021 21:32:03 +0000 (22:32 +0100)
committerGitHub <noreply@github.com>
Fri, 13 Aug 2021 21:32:03 +0000 (23:32 +0200)
docs/core-concepts/index.md

index 88d219f23d0b64cf38be4e91dcdfdc1064a50ca8..5df92276facddc71864db74f1409300fcc52176a 100644 (file)
@@ -39,7 +39,7 @@ If you are not using `setup` components yet, [you can still use Pinia with _map
 
 Once the store is instantiated, you can access any property defined in `state`, `getters`, and `actions` directly on the store. We will see these in detail in the next pages but autocompletion will help you.
 
-Note that `store` in an object wrapped with `reactive`, meaning there is no need to write `.value` after getters but, like `props` in `setup`, **we cannot destructure it**:
+Note that `store` is an object wrapped with `reactive`, meaning there is no need to write `.value` after getters but, like `props` in `setup`, **we cannot destructure it**:
 
 ```js
 export default defineComponent({