]> git.ipfire.org Git - thirdparty/vuejs/pinia.git/commitdiff
doxs: fix typo and improve readability (#2444)
authorManuel Bach <49973666+mil7@users.noreply.github.com>
Wed, 11 Oct 2023 16:46:55 +0000 (18:46 +0200)
committerGitHub <noreply@github.com>
Wed, 11 Oct 2023 16:46:55 +0000 (18:46 +0200)
packages/docs/cookbook/testing.md

index 9787e8e8fc6e8f69f4d1aa15dbc8e4faee42067a..d125daa84ce69b00758b87d71bba426eb1350cae 100644 (file)
@@ -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())
   })