Skip to content

Commit 77bac60

Browse files
committed
Minor updates to README
1 parent a2e587e commit 77bac60

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Contributing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ When the user accessess a Firebase ref, the `Database` instance creates a new in
3636
const ref = db.ref('/events');
3737
```
3838

39+
The `DatabaseRef` class is the wrapper that maps to Firebase database points. For efficiency, the `paths` are stored as an array so we can walk up and down the firebase database using the `parent()` and `child()` methods on a database ref.
40+
3941
Calling `getAt()` on the `ref` (an instance of the `DatabaseRef` class) will make a call to the **native** SDK using a method called `promisify()`
4042

4143
```javascript

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ firestack.setStorageUrl(`gs://${config.firebase.storageBucket}`)
483483
.catch(() => console.error('This is weird: something happened...'))
484484
```
485485

486-
If the `storageBucket` key is passed as a configuration option, this method is automatically called for us by default.
486+
If the `storageBucket` key is passed as a configuration option, this method is automatically called by default.
487487

488488
#### uploadFile()
489489

0 commit comments

Comments
 (0)