Skip to content

Commit dcbd14d

Browse files
Kyle Cordesdavideast
authored andcommitted
Fix two minor spelling errors (angular#156)
1 parent 40d4459 commit dcbd14d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/2-retrieving-data-as-objects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const dbRef = new Firebase('https://<your-app>.firebaseio.com/item');
4747
const relative = af.database.object(dbRef);
4848
```
4949

50-
### Retreive data
50+
### Retrieve data
5151

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

7575
### API Summary
7676

77-
The table below highlights some of the common methods on the `FirebaseObjectObservale`.
77+
The table below highlights some of the common methods on the `FirebaseObjectObservable`.
7878

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

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

0 commit comments

Comments
 (0)