From: Roman Ruiz-Esparza Date: Sat, 26 Mar 2022 11:30:47 +0000 (-0400) Subject: fix typo (#1171) X-Git-Tag: @pinia/testing@0.0.11~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e633a842e3de36213e0a080bd2eb5cff8d21f274;p=thirdparty%2Fvuejs%2Fpinia.git fix typo (#1171) --- diff --git a/packages/docs/core-concepts/plugins.md b/packages/docs/core-concepts/plugins.md index b832ec8c..d2812d7e 100644 --- a/packages/docs/core-concepts/plugins.md +++ b/packages/docs/core-concepts/plugins.md @@ -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) {