From 51de4e6b9dc8445df1baa9147d972924525f15b8 Mon Sep 17 00:00:00 2001 From: Manuel Bach <49973666+mil7@users.noreply.github.com> Date: Wed, 11 Oct 2023 18:46:55 +0200 Subject: [PATCH] doxs: fix typo and improve readability (#2444) --- packages/docs/cookbook/testing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/cookbook/testing.md b/packages/docs/cookbook/testing.md index 9787e8e8fc..d125daa84c 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()) })