Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/2-retrieving-data-as-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const dbRef = new Firebase('https://<your-app>.firebaseio.com/item');
const relative = af.database.object(dbRef);
```

### Retreive data
### Retrieve data

To get the object in realtime, create an object binding as a property of your component or service.
Then in your template, you can use the `async` pipe to unwrap the binding.
Expand All @@ -74,7 +74,7 @@ export class AppComponent {

### API Summary

The table below highlights some of the common methods on the `FirebaseObjectObservale`.
The table below highlights some of the common methods on the `FirebaseObjectObservable`.

| method | |
| ---------|--------------------|
Expand Down Expand Up @@ -183,4 +183,4 @@ this.item.subscribe(snapshot => console.log(snapshot.key()));
The `FirebaseObjectObservable` synchronizes objects from the realtime database. There is no querying available for objects because
objects are simply JSON, and JSON order is specified by the browser.

###[Next Step: Retrieving data as lists](3-retrieving-data-as-lists.md)
###[Next Step: Retrieving data as lists](3-retrieving-data-as-lists.md)