]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix typo in test case description
authorkiyon <kiyonlin@163.com>
Fri, 16 Apr 2021 02:43:56 +0000 (10:43 +0800)
committerGitHub <noreply@github.com>
Fri, 16 Apr 2021 02:43:56 +0000 (10:43 +0800)
packages/reactivity/__tests__/shallowReactive.spec.ts

index a04e6170d4e6a7e5e34c400e4d79566c9c5e8430..595e728097e8a8097289cad55a6218557b28c05f 100644 (file)
@@ -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)