]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: add missing space in warning message (#4359) [ci skip]
authorokbug <1583978087@qq.com>
Tue, 17 Aug 2021 15:28:33 +0000 (23:28 +0800)
committerGitHub <noreply@github.com>
Tue, 17 Aug 2021 15:28:33 +0000 (11:28 -0400)
packages/reactivity/src/collectionHandlers.ts

index fe79ad9e66c4e3b70f58107b4412c833223e4ddb..5ea878aff97127fc3116a2b61781e8fa870fc2a2 100644 (file)
@@ -228,7 +228,7 @@ function createReadonlyMethod(type: TriggerOpTypes): Function {
     if (__DEV__) {
       const key = args[0] ? `on key "${args[0]}" ` : ``
       console.warn(
-        `${capitalize(type)} operation ${key}failed: target is readonly.`,
+        `${capitalize(type)} operation ${key} failed: target is readonly.`,
         toRaw(this)
       )
     }