Skip to content

Commit

Permalink
typo fix (#4583)
Browse files Browse the repository at this point in the history
-  nomralization / normalzation → normalization
  • Loading branch information
yu1222 authored and yyx990803 committed Dec 27, 2016
1 parent 89987e8 commit d111f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/codegen/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@ function genChildren (el: ASTElement, checkSkip?: boolean): string | void {
}
}

// determine the normalzation needed for the children array.
// determine the normalization needed for the children array.
// 0: no normalization needed
// 1: simple normalization needed (possible 1-level deep nested array)
// 2: full nomralization needed
// 2: full normalization needed
function getNormalizationType (children): number {
let res = 0
for (let i = 0; i < children.length; i++) {
Expand Down

0 comments on commit d111f3f

Please sign in to comment.