From 7a8bac73e1e2c5716d9e0e3d6e14d540ac00dd2f Mon Sep 17 00:00:00 2001 From: kiyon Date: Fri, 16 Apr 2021 10:43:56 +0800 Subject: [PATCH] chore: fix typo in test case description --- packages/reactivity/__tests__/shallowReactive.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reactivity/__tests__/shallowReactive.spec.ts b/packages/reactivity/__tests__/shallowReactive.spec.ts index a04e6170d..595e72809 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)