Skip to content

Commit 77cf75c

Browse files
committed
Fix bug in API example
1 parent e3633c0 commit 77cf75c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function onValue (_snapshot_) {
117117
}
118118
ref.on('value', onValue);
119119
ref.set({
120-
foo: 'bar';
120+
foo: 'bar',
121121
});
122122
ref.flush();
123123
console.assert(ref.getData().foo === 'bar', 'data has foo');

0 commit comments

Comments
 (0)