]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix typo in vBind.ts (#91)
authortaiyop <akashitaiyo@gmail.com>
Sat, 5 Oct 2019 14:26:32 +0000 (23:26 +0900)
committerEvan You <yyx990803@gmail.com>
Sat, 5 Oct 2019 14:26:32 +0000 (10:26 -0400)
packages/compiler-core/src/transforms/vBind.ts

index fc774e45ff2bc5d7a28d205d739219463a2c5af1..5c6e65a0b4308c1f31f50b9e839545e4fa287821 100644 (file)
@@ -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) {