]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
fix typo (#1171)
authorRoman Ruiz-Esparza <rjruizes@ncsu.edu>
Sat, 26 Mar 2022 11:30:47 +0000 (07:30 -0400)
committerGitHub <noreply@github.com>
Sat, 26 Mar 2022 11:30:47 +0000 (12:30 +0100)
packages/docs/core-concepts/plugins.md

index b832ec8cd5f1132bbafe04928477a4212459496e..d2812d7e0bac7ef8db6c782cac24a08b31ba51f7 100644 (file)
@@ -208,7 +208,7 @@ The plugin can then read that option to wrap actions and replace the original on
 
 ```js
 // use any debounce library
-import debounce from 'lodash/debunce'
+import debounce from 'lodash/debounce'
 
 pinia.use(({ options, store }) => {
   if (options.debounce) {