From c60ef45bc853a305158c8f890f294e0b4efb74f0 Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Thu, 16 Jun 2016 10:23:02 -0700 Subject: [PATCH] fix(HtmlParser): add missing ; --- modules/@angular/compiler/src/html_parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/compiler/src/html_parser.ts b/modules/@angular/compiler/src/html_parser.ts index 2240ace0b8..bcafed7076 100644 --- a/modules/@angular/compiler/src/html_parser.ts +++ b/modules/@angular/compiler/src/html_parser.ts @@ -336,7 +336,7 @@ class TreeBuilder { for (let i = this.elementStack.length - 1; i >= 0; i--) { if (this.elementStack[i].name !== 'ng-container') { - return { parent: this.elementStack[i], container } + return { parent: this.elementStack[i], container }; } container = this.elementStack[i]; }