From 97833d48c11ef1764b16b760f72c16e44747597c Mon Sep 17 00:00:00 2001 From: Kara Erickson Date: Fri, 10 Jun 2016 11:32:09 -0700 Subject: [PATCH] chore(templateOutlet): fix linting --- .../@angular/common/src/directives/ng_template_outlet.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/@angular/common/src/directives/ng_template_outlet.ts b/modules/@angular/common/src/directives/ng_template_outlet.ts index 33f2776920..9240cbab6a 100644 --- a/modules/@angular/common/src/directives/ng_template_outlet.ts +++ b/modules/@angular/common/src/directives/ng_template_outlet.ts @@ -1,7 +1,9 @@ -import {Directive, Input, TemplateRef, ViewContainerRef, EmbeddedViewRef} from '@angular/core'; +import {Directive, EmbeddedViewRef, Input, TemplateRef, ViewContainerRef} from '@angular/core'; + import {isPresent} from '../facade/lang'; + /** * Creates and inserts an embedded view based on a prepared `TemplateRef`. * You can attach a context object to the `EmbeddedViewRef` by setting `[ngOutletContext]`. @@ -11,7 +13,8 @@ import {isPresent} from '../facade/lang'; * Note: using the key `$implicit` in the context object will set it's value as default. * * ### Syntax - * - `` + * - `` * * @experimental */