Skip to content

Commit d15d48c

Browse files
bklimtjshcrowthe
authored andcommitted
Update README files to fix names of packages. (#204)
1 parent 3f827b8 commit d15d48c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

packages/database/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@firebase/database`
22

3-
This is the realtime database component for the Firebase JS SDK. It has a peer
3+
This is the realtime database component for the Firebase JS SDK. It has a peer
44
dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package
55
is included by default in the [`firebase`](https://npm.im/firebase) wrapper
66
package.
@@ -24,7 +24,7 @@ below:
2424
import firebase from '@firebase/app';
2525
import '@firebase/database'
2626

27-
// Do stuff w/ `firebase` and `firebase.auth`
27+
// Do stuff w/ `firebase` and `firebase.database`
2828
```
2929

3030
**CommonJS Modules**
@@ -33,7 +33,7 @@ import '@firebase/database'
3333
const firebase = require('@firebase/app').default;
3434
require('@firebase/database');
3535

36-
// Do stuff with `firebase` and `firebase.auth`
36+
// Do stuff with `firebase` and `firebase.database`
3737
```
3838

3939
## Documentation

packages/firestore/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@firebase/firestore`
22

3-
This is the realtime database component for the Firebase JS SDK. It has a peer
3+
This is the Firestore component for the Firebase JS SDK. It has a peer
44
dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package
55
**is not** included by default in the [`firebase`](https://npm.im/firebase)
66
wrapper package.
@@ -24,7 +24,7 @@ below:
2424
import firebase from '@firebase/app';
2525
import '@firebase/firestore'
2626

27-
// Do stuff w/ `firebase` and `firebase.auth`
27+
// Do stuff w/ `firebase` and `firebase.firestore`
2828
```
2929

3030
**CommonJS Modules**
@@ -33,7 +33,7 @@ import '@firebase/firestore'
3333
const firebase = require('@firebase/app').default;
3434
require('@firebase/firestore');
3535

36-
// Do stuff with `firebase` and `firebase.auth`
36+
// Do stuff with `firebase` and `firebase.firestore`
3737
```
3838

3939
## Documentation

packages/messaging/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@firebase/messaging`
22

3-
This is the authentication component for the Firebase JS SDK. It has a peer
3+
This is the messaging component for the Firebase JS SDK. It has a peer
44
dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package
55
is included by default in the [`firebase`](https://npm.im/firebase) wrapper
66
package.
@@ -24,7 +24,7 @@ below:
2424
import firebase from '@firebase/app';
2525
import '@firebase/messaging'
2626

27-
// Do stuff w/ `firebase` and `firebase.auth`
27+
// Do stuff w/ `firebase` and `firebase.messaging`
2828
```
2929

3030
**CommonJS Modules**
@@ -33,7 +33,7 @@ import '@firebase/messaging'
3333
const firebase = require('@firebase/app').default;
3434
require('@firebase/messaging');
3535

36-
// Do stuff with `firebase` and `firebase.auth`
36+
// Do stuff with `firebase` and `firebase.messaging`
3737
```
3838

3939
## Documentation

packages/storage/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@firebase/storage`
22

3-
This is the authentication component for the Firebase JS SDK. It has a peer
3+
This is the storage component for the Firebase JS SDK. It has a peer
44
dependency on the [`@firebase/app`](https://npm.im) package on NPM. This package
55
is included by default in the [`firebase`](https://npm.im/firebase) wrapper
66
package.
@@ -24,7 +24,7 @@ below:
2424
import firebase from '@firebase/app';
2525
import '@firebase/storage'
2626

27-
// Do stuff w/ `firebase` and `firebase.auth`
27+
// Do stuff w/ `firebase` and `firebase.storage`
2828
```
2929

3030
**CommonJS Modules**
@@ -33,7 +33,7 @@ import '@firebase/storage'
3333
const firebase = require('@firebase/app').default;
3434
require('@firebase/storage');
3535

36-
// Do stuff with `firebase` and `firebase.auth`
36+
// Do stuff with `firebase` and `firebase.storage`
3737
```
3838

3939
## Documentation

0 commit comments

Comments
 (0)