chore: typos [ci-skip] (#323)

This commit is contained in:
Carlos Rodrigues 2019-10-17 20:01:51 +01:00 committed by Evan You
parent 1722dc05c5
commit 6c80e13986
5 changed files with 5 additions and 5 deletions

View File

@ -88,7 +88,7 @@ export const enum ErrorCodes {
X_PREFIX_ID_NOT_SUPPORTED, X_PREFIX_ID_NOT_SUPPORTED,
X_MODULE_MODE_NOT_SUPPORTED, X_MODULE_MODE_NOT_SUPPORTED,
// Sepcial value for higher-order compilers to pick up the last code // Special value for higher-order compilers to pick up the last code
// to avoid collision of error codes. This should always be kept as the last // to avoid collision of error codes. This should always be kept as the last
// item. // item.
__EXTEND_POINT__ __EXTEND_POINT__

View File

@ -31,7 +31,7 @@ function parseVOnProperties(
} }
describe('compiler-dom: transform v-on', () => { describe('compiler-dom: transform v-on', () => {
it('should support muliple modifiers w/ prefixIdentifiers: true', () => { it('should support multiple modifiers w/ prefixIdentifiers: true', () => {
const [prop] = parseVOnProperties(`<div @click.stop.prevent="test"/>`, { const [prop] = parseVOnProperties(`<div @click.stop.prevent="test"/>`, {
prefixIdentifiers: true prefixIdentifiers: true
}) })

View File

@ -66,7 +66,7 @@ export const transformModel: DirectiveTransform = (dir, node, context) => {
} }
// inject runtime directive // inject runtime directive
// by returning the helper symbol via needRuntime // by returning the helper symbol via needRuntime
// the import will replaced a resovleDirective call. // the import will replaced a resolveDirective call.
if (!isInvalidType) { if (!isInvalidType) {
baseResult.needRuntime = context.helper(directiveToUse) baseResult.needRuntime = context.helper(directiveToUse)
} }

View File

@ -16,7 +16,7 @@ const isEventOptionModifier = /*#__PURE__*/ makeMap(`passive,once,capture`)
const isNonKeyModifier = /*#__PURE__*/ makeMap( const isNonKeyModifier = /*#__PURE__*/ makeMap(
// event propagation management // event propagation management
`stop,prevent,self,` + `stop,prevent,self,` +
// system modifers + exact // system modifiers + exact
`ctrl,shift,alt,meta,exact,` + `ctrl,shift,alt,meta,exact,` +
// mouse // mouse
`left,middle,right` `left,middle,right`

View File

@ -173,7 +173,7 @@ describe('test renderer', () => {
expect(serialize(root)).toBe(`<div><span>1</span></div>`) expect(serialize(root)).toBe(`<div><span>1</span></div>`)
}) })
it('should be able to trigger events with muliple listeners', async () => { it('should be able to trigger events with multiple listeners', async () => {
const count = ref(0) const count = ref(0)
const count2 = ref(1) const count2 = ref(1)