Skip to content

Commit a696fb5

Browse files
jamesdanielsdavideast
authored andcommitted
Final fixes
1 parent 5a9699c commit a696fb5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 2. Retrieving data as objects
22

33
> AngularFire2 synchronizes data as objects using the `FirebaseObjectObservable`.
4-
The `FirebaseObjectObservable` is not created by itself, but through the `AngularFire.database` service.
4+
The `FirebaseObjectObservable` is not created by itself, but through the `AngularFireDatabase` service.
55
The guide below demonstrates how to retrieve, save, and remove data as objects.
66

77
## Injecting the AngularFireDatabase service

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 3. Retrieving data as lists
22

33
> AngularFire2 synchronizes data as lists using the `FirebaseListObservable`.
4-
The `FirebaseListObservable` is not created by itself, but through the `AngularFire.database` service.
4+
The `FirebaseListObservable` is not created by itself, but through the `AngularFireDatabase` service.
55
The guide below demonstrates how to retrieve, save, and remove data as lists.
66

77
## Injecting the AngularFireDatabase service

docs/version-4-upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AngularFire2 4.0 is a refactor of the AngularFire2 package which implements
55

66
### Removing `AngularFire` for Modularity
77

8-
Prior to 4.0, AngularFire2 not take advantage of the Firebase SDK's modularity for tree shaking. The `AngularFire` service has now been removed and the library broken up into smaller @NgModules:
8+
Prior to 4.0, AngularFire2 did not take advantage of the Firebase SDK's modularity for tree shaking. The `AngularFire` service has now been removed and the library broken up into smaller @NgModules:
99

1010
* `AngularFireModule`
1111
* `AngularFireDatabaseModule`
@@ -22,7 +22,7 @@ constructor(af: AngularFire) {
2222
Should now be:
2323

2424
```typescript
25-
constructor(db: AngularFireDatabasem, afAuth: AngularFireAuth) {
25+
constructor(db: AngularFireDatabase, afAuth: AngularFireAuth) {
2626
db.list('foo');
2727
afAuth.authState;
2828
}

0 commit comments

Comments
 (0)