Skip to content

Commit 05a2fce

Browse files
EmmanuelDemeydavideast
authored andcommitted
The *ngFor syntax is not correct : ngForOf instead of ngForIn (angular#384)
1 parent a426aac commit 05a2fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/3-retrieving-data-as-lists.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ import {AngularFire, FirebaseListObservable} from 'angularfire2';
6262
selector: 'app',
6363
templateUrl: `
6464
<ul>
65-
<li *ngFor="let item in items | async">
65+
<li *ngFor="let item of items | async">
6666
{{ item.name }}
6767
</li>
6868
</ul>

0 commit comments

Comments
 (0)