diff --git a/doc/gettingstarted/querying.md b/doc/gettingstarted/querying.md index 05f2a930b..5f45dd01b 100644 --- a/doc/gettingstarted/querying.md +++ b/doc/gettingstarted/querying.md @@ -171,7 +171,7 @@ var overfirstbisector = points.filter(function (pos) { return pos.x === pos.y; }); -var movesub = overfirstbisector.subscribe(function (pos) { console.log('mouse at ' + pos.x + ', ' pos.y); }); +var movesub = overfirstbisector.subscribe(function (pos) { console.log('mouse at ' + pos.x + ', ' + pos.y); }); ``` ## Time-based Operation ##