Skip to content

Commit ed7e187

Browse files
Akash Paulkatowulf
Akash Paul
authored and
katowulf
committed
docs: fix typo in example for list of items
this.items = af.database.list('/items'); previously this.items = af.database.list('items');
1 parent 971b29e commit ed7e187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/1-install-and-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ import { AngularFire, FirebaseListObservable } from 'angularfire2';
124124
export class AppComponent {
125125
items: FirebaseListObservable<any[]>;
126126
constructor(af: AngularFire) {
127-
this.items = af.database.list('items');
127+
this.items = af.database.list('/items');
128128
}
129129
}
130130
```

0 commit comments

Comments
 (0)