From d111f3f1fdcac8206a4bed59aa0227fc622e884b Mon Sep 17 00:00:00 2001 From: yu1222 Date: Wed, 28 Dec 2016 00:17:24 +0900 Subject: [PATCH] typo fix (#4583) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - nomralization / normalzation → normalization --- src/compiler/codegen/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/codegen/index.js b/src/compiler/codegen/index.js index d0a69154d1..c976c70cfc 100644 --- a/src/compiler/codegen/index.js +++ b/src/compiler/codegen/index.js @@ -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++) {