Revert "chore: add missing space in warning message (#4359) [ci skip]"

This reverts commit c68cba82ea.
This commit is contained in:
Evan You 2021-08-17 12:18:54 -04:00
parent c51fb74599
commit 951fbb197b

View 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)
)
}