From: Manuel Bach <49973666+mil7@users.noreply.github.com> Date: Wed, 11 Oct 2023 16:46:55 +0000 (+0200) Subject: doxs: fix typo and improve readability (#2444) X-Git-Tag: @pinia/nuxt@0.5.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=51de4e6b9dc8445df1baa9147d972924525f15b8;p=thirdparty%2Fvuejs%2Fpinia.git doxs: fix typo and improve readability (#2444) --- diff --git a/packages/docs/cookbook/testing.md b/packages/docs/cookbook/testing.md index 9787e8e8..d125daa8 100644 --- a/packages/docs/cookbook/testing.md +++ b/packages/docs/cookbook/testing.md @@ -19,9 +19,9 @@ import { useCounterStore } from '../src/stores/counter' describe('Counter Store', () => { beforeEach(() => { - // creates a fresh pinia and make it active so it's automatically picked - // up by any useStore() call without having to pass it to it: - // `useStore(pinia)` + // creates a fresh pinia and makes it active + // so it's automatically picked up by any useStore() call + // without having to pass it to it: `useStore(pinia)` setActivePinia(createPinia()) })