From 6449c3c1c6f7e756fefdd819a11e3ded17af4b5c Mon Sep 17 00:00:00 2001 From: Lukas Ruebbelke Date: Tue, 8 Sep 2015 22:30:25 -0700 Subject: [PATCH] docs(CompilePipeline): correct compiliation to compilation Closes #4072 --- .../angular2/src/core/render/dom/compiler/compile_pipeline.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/render/dom/compiler/compile_pipeline.ts b/modules/angular2/src/core/render/dom/compiler/compile_pipeline.ts index 8ef3b6702f..4a70f0659c 100644 --- a/modules/angular2/src/core/render/dom/compiler/compile_pipeline.ts +++ b/modules/angular2/src/core/render/dom/compiler/compile_pipeline.ts @@ -40,7 +40,7 @@ export class CompilePipeline { if (current.compileChildren) { var node = DOM.firstChild(DOM.templateAwareRoot(current.element)); while (isPresent(node)) { - // compiliation can potentially move the node, so we need to store the + // compilation can potentially move the node, so we need to store the // next sibling before recursing. var nextNode = DOM.nextSibling(node); if (DOM.isElementNode(node)) {