fix(docs): upgrade deprecated ngFor-Syntax

This commit is contained in:
Felix Itzenplitz 2016-05-02 14:41:23 +02:00 committed by Martin Probst
parent a033f8335b
commit 27a7b51d99
1 changed files with 3 additions and 3 deletions

View File

@ -68,9 +68,9 @@ export class NgForRow {
*
* ### Syntax
*
* - `<li *ngFor="let item of items; #i = index">...</li>`
* - `<li template="ngFor #item of items; #i = index">...</li>`
* - `<template ngFor #item [ngForOf]="items" #i="index"><li>...</li></template>`
* - `<li *ngFor="let item of items; let i = index">...</li>`
* - `<li template="ngFor let item of items; let i = index">...</li>`
* - `<template ngFor let-item [ngForOf]="items" let-i="index"><li>...</li></template>`
*
* ### Example
*