diff --git a/docs/guide/migration.md b/docs/guide/migration.md index aac0b57b26bd..afae329f06a2 100644 --- a/docs/guide/migration.md +++ b/docs/guide/migration.md @@ -70,7 +70,7 @@ beforeEach(() => setActivePinia(createTestingPinia())) // [!code --] beforeEach(() => { setActivePinia(createTestingPinia()) }) // [!code ++] ``` -In Jest hooks are caled sequentially (one after another). By default, Vitest runs hooks in parallel. To use Jest's behavior, update [`sequence.hooks`](/config/#sequence-hooks) option: +In Jest hooks are called sequentially (one after another). By default, Vitest runs hooks in parallel. To use Jest's behavior, update [`sequence.hooks`](/config/#sequence-hooks) option: ```ts export default defineConfig({