Skip to content

Commit 9edf33a

Browse files
flowdeedavideast
authored andcommitted
corrected variable naming (angular#319)
1 parent dcfdacf commit 9edf33a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ import {AngularFire, FirebaseListObservable} from 'angularfire2';
6969
`,
7070
})
7171
class AppComponent {
72-
item: Observable<any>;
72+
items: Observable<any>;
7373
constructor(af: AngularFire) {
74-
this.item = af.database.list('/items');
74+
this.items = af.database.list('/items');
7575
}
7676
}
7777
```

0 commit comments

Comments
 (0)