]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix docs typo in vOn.ts (#86)
authorReed Jones <reedjones@reedjones.com>
Sat, 5 Oct 2019 03:12:49 +0000 (21:12 -0600)
committerEvan You <yyx990803@gmail.com>
Sat, 5 Oct 2019 03:12:49 +0000 (23:12 -0400)
packages/compiler-core/src/transforms/vOn.ts

index a28ea544392e7da6a0b545429b46b126ec990f45..9f3b0a91d7d3c9f43440d770925885234f1a8a3f 100644 (file)
@@ -35,7 +35,7 @@ export const transformOn: DirectiveTransform = (dir, context) => {
       eventName = createCompoundExpression([`"on" + (`, arg, `)`])
     }
   } else {
-    // already a compound epxression.
+    // already a compound expression.
     eventName = arg
     eventName.children.unshift(`"on" + (`)
     eventName.children.push(`)`)