]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
docs: fix typo in plugins.md (#2775)
authorTyler McDonald <100496212+tyler-mcdonald@users.noreply.github.com>
Fri, 20 Sep 2024 16:34:35 +0000 (11:34 -0500)
committerGitHub <noreply@github.com>
Fri, 20 Sep 2024 16:34:35 +0000 (18:34 +0200)
packages/docs/core-concepts/plugins.md

index f23a93a737052e78ada1adb338fe1d5a25b2d5b4..f784ec0dcfbca9d2087bd3f8c86e222fa30caf8d 100644 (file)
@@ -81,7 +81,7 @@ Any property _returned_ by a plugin will be automatically tracked by devtools so
 // from the example above
 pinia.use(({ store }) => {
   store.hello = 'world'
-  // make sure your bundler handle this. webpack and vite should do it by default
+  // make sure your bundler handles this. webpack and vite should do it by default
   if (process.env.NODE_ENV === 'development') {
     // add any keys you set on the store
     store._customProperties.add('hello')