Browse Source

chore(typo): fix typo in comments (#9995)

dev
Sai 6 years ago
committed by Eduardo San Martin Morote
parent
commit
1137e415c9
  1. 2
      src/compiler/parser/html-parser.js
  2. 2
      src/core/instance/render-helpers/bind-dynamic-keys.js

2
src/compiler/parser/html-parser.js

@ -22,7 +22,7 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)
const startTagClose = /^\s*(\/?)>/
const endTag = new RegExp(`^<\\/${qnameCapture}[^>]*>`)
const doctype = /^<!DOCTYPE [^>]+>/i
// #7298: escape - to avoid being pased as HTML comment when inlined in page
// #7298: escape - to avoid being passed as HTML comment when inlined in page
const comment = /^<!\--/
const conditionalComment = /^<!\[/

2
src/core/instance/render-helpers/bind-dynamic-keys.js

@ -17,7 +17,7 @@ export function bindDynamicKeys (baseObj: Object, values: Array<any>): Object {
if (typeof key === 'string' && key) {
baseObj[values[i]] = values[i + 1]
} else if (process.env.NODE_ENV !== 'production' && key !== '' && key !== null) {
// null is a speical value for explicitly removing a binding
// null is a special value for explicitly removing a binding
warn(
`Invalid value for dynamic directive argument (expected string or null): ${key}`,
this

Loading…
Cancel
Save