From: Eduardo San Martin Morote Date: Wed, 26 Jun 2024 12:49:37 +0000 (+0200) Subject: chore: typos [skip ci] X-Git-Tag: @pinia/nuxt@0.5.2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bda1a13675417fa77a535d3ed05e34bea52c078d;p=thirdparty%2Fvuejs%2Fpinia.git chore: typos [skip ci] --- diff --git a/packages/pinia/src/mapHelpers.ts b/packages/pinia/src/mapHelpers.ts index 5b6ecd9a..3c1a99af 100644 --- a/packages/pinia/src/mapHelpers.ts +++ b/packages/pinia/src/mapHelpers.ts @@ -325,11 +325,11 @@ export type _MapActionsObjectReturn> = { * methods: { * // other methods properties * // useCounterStore has two actions named `increment` and `setCount` - * ...mapActions(useCounterStore, { moar: 'increment', setIt: 'setCount' }) + * ...mapActions(useCounterStore, { more: 'increment', setIt: 'setCount' }) * }, * * created() { - * this.moar() + * this.more() * this.setIt(2) * } * }