From ca27c8e96efa2c2829f996e3a019fb629a92d4d0 Mon Sep 17 00:00:00 2001 From: Ewout Stortenbeker Date: Sat, 5 Jan 2019 16:07:27 +0100 Subject: [PATCH] fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f9ffa79..9cf7c7c 100644 --- a/README.md +++ b/README.md @@ -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,