diff --git a/packages/reactivity/__tests__/shallowReactive.spec.ts b/packages/reactivity/__tests__/shallowReactive.spec.ts index a04e6170..595e7280 100644 --- a/packages/reactivity/__tests__/shallowReactive.spec.ts +++ b/packages/reactivity/__tests__/shallowReactive.spec.ts @@ -15,7 +15,7 @@ describe('shallowReactive', () => { }) // #2843 - test('should allow shallow und normal reactive for same target', async () => { + test('should allow shallow and normal reactive for same target', async () => { const original = { foo: {} } const shallowProxy = shallowReactive(original) const reactiveProxy = reactive(original)