From: taiyop Date: Sat, 5 Oct 2019 14:26:32 +0000 (+0900) Subject: chore: fix typo in vBind.ts (#91) X-Git-Tag: v3.0.0-alpha.0~603 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a84a2b252d02f5e04b8d22643c1a06ca0ad8dec7;p=thirdparty%2Fvuejs%2Fcore.git chore: fix typo in vBind.ts (#91) --- diff --git a/packages/compiler-core/src/transforms/vBind.ts b/packages/compiler-core/src/transforms/vBind.ts index fc774e45ff..5c6e65a0b4 100644 --- a/packages/compiler-core/src/transforms/vBind.ts +++ b/packages/compiler-core/src/transforms/vBind.ts @@ -14,7 +14,7 @@ export const transformBind: DirectiveTransform = (dir, context) => { context.onError(createCompilerError(ErrorCodes.X_V_BIND_NO_EXPRESSION, loc)) } // .prop is no longer necessary due to new patch behavior - // .sync is replced by v-model:arg + // .sync is replaced by v-model:arg if (modifiers.includes('camel')) { if (arg.type === NodeTypes.SIMPLE_EXPRESSION) { if (arg.isStatic) {