Skip to content

Commit 97833d4

Browse files
committed
chore(templateOutlet): fix linting
1 parent 9c0031f commit 97833d4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

modules/@angular/common/src/directives/ng_template_outlet.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
import {Directive, Input, TemplateRef, ViewContainerRef, EmbeddedViewRef} from '@angular/core';
1+
import {Directive, EmbeddedViewRef, Input, TemplateRef, ViewContainerRef} from '@angular/core';
2+
23
import {isPresent} from '../facade/lang';
34

45

6+
57
/**
68
* Creates and inserts an embedded view based on a prepared `TemplateRef`.
79
* You can attach a context object to the `EmbeddedViewRef` by setting `[ngOutletContext]`.
@@ -11,7 +13,8 @@ import {isPresent} from '../facade/lang';
1113
* Note: using the key `$implicit` in the context object will set it's value as default.
1214
*
1315
* ### Syntax
14-
* - `<template [ngTemplateOutlet]="templateRefExpression" [ngOutletContext]="objectExpression"></template>`
16+
* - `<template [ngTemplateOutlet]="templateRefExpression"
17+
* [ngOutletContext]="objectExpression"></template>`
1518
*
1619
* @experimental
1720
*/

0 commit comments

Comments
 (0)