From c68cba82eaabdef8d5e3c8dae1146bdb315a845a Mon Sep 17 00:00:00 2001 From: okbug <1583978087@qq.com> Date: Tue, 17 Aug 2021 23:28:33 +0800 Subject: [PATCH] chore: add missing space in warning message (#4359) [ci skip] --- packages/reactivity/src/collectionHandlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reactivity/src/collectionHandlers.ts b/packages/reactivity/src/collectionHandlers.ts index fe79ad9e66c..5ea878aff97 100644 --- a/packages/reactivity/src/collectionHandlers.ts +++ b/packages/reactivity/src/collectionHandlers.ts @@ -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) ) }