doc(NgFor): fix inline doc

This commit is contained in:
Victor Berchet 2015-05-16 08:43:07 +02:00
parent 842459aa46
commit ad29b12cde
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ import {ListWrapper} from 'angular2/src/facade/collection';
* # Syntax
*
* - `<li *ng-for="#item of items; #i = index">...</li>`
* - `<li template="ng-for #item of items; #i=index">...</li>`
* - `<template [ng-for]="#item" [ng-for-of]="items" #i="index"><li>...</li></template>`
* - `<li template="ng-for #item of items; #i = index">...</li>`
* - `<template [ng-for] #item [ng-for-of]="items" #i="index"><li>...</li></template>`
*
* @exportedAs angular2/directives
*/