From 548e75b7a4839b9b45ce79a65db56a73374d7b6d Mon Sep 17 00:00:00 2001 From: Kyle Cordes Date: Thu, 5 May 2016 21:47:12 -0600 Subject: [PATCH] Fix two minor spelling errors --- docs/2-retrieving-data-as-objects.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/2-retrieving-data-as-objects.md b/docs/2-retrieving-data-as-objects.md index 723948600..9fe87be7f 100644 --- a/docs/2-retrieving-data-as-objects.md +++ b/docs/2-retrieving-data-as-objects.md @@ -47,7 +47,7 @@ const dbRef = new Firebase('https://.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. @@ -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 | | | ---------|--------------------| @@ -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) \ No newline at end of file +###[Next Step: Retrieving data as lists](3-retrieving-data-as-lists.md)