Skip to content

Commit

Permalink
The *ngFor syntax is not correct : ngForOf instead of ngForIn (angula…
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelDemey authored and davideast committed Jul 25, 2016
1 parent a426aac commit 05a2fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/3-retrieving-data-as-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ import {AngularFire, FirebaseListObservable} from 'angularfire2';
selector: 'app',
templateUrl: `
<ul>
<li *ngFor="let item in items | async">
<li *ngFor="let item of items | async">
{{ item.name }}
</li>
</ul>
Expand Down

0 comments on commit 05a2fce

Please sign in to comment.