chore(templateOutlet): fix linting

This commit is contained in:
Kara Erickson 2016-06-10 11:32:09 -07:00
parent 9c0031f7a5
commit 97833d48c1
1 changed files with 5 additions and 2 deletions

View File

@ -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
* - `<template [ngTemplateOutlet]="templateRefExpression" [ngOutletContext]="objectExpression"></template>`
* - `<template [ngTemplateOutlet]="templateRefExpression"
* [ngOutletContext]="objectExpression"></template>`
*
* @experimental
*/