Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 3f7f5bb

Browse files
committed
Update querying.md
Add missing `+` operator in the last example of the the `Filtering` section
1 parent 8d197bd commit 3f7f5bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/gettingstarted/querying.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ var overfirstbisector = points.filter(function (pos) {
171171
return pos.x === pos.y;
172172
});
173173

174-
var movesub = overfirstbisector.subscribe(function (pos) { console.log('mouse at ' + pos.x + ', ' pos.y); });
174+
var movesub = overfirstbisector.subscribe(function (pos) { console.log('mouse at ' + pos.x + ', ' + pos.y); });
175175
```
176176

177177
## Time-based Operation ##

0 commit comments

Comments
 (0)