fixed typo

This commit is contained in:
Ewout Stortenbeker 2019-01-05 16:07:27 +01:00
parent 6e6b25b1a1
commit ca27c8e96e

View file

@ -308,7 +308,7 @@ newPostStream.stop();
It is now possible to subscribe to events using wildcards and variables in the path:
```javascript
// Using wildcards:
db.ref('users/*\/posts')
db.ref('users/*/posts')
.on('child_added')
.subscribe(snap => {
// This will fire for every post added by any user,