From 3f7f5bbab3d487d4fc5b89ec8ca19257dcac4358 Mon Sep 17 00:00:00 2001 From: Kirill Cherkashin Date: Mon, 11 May 2015 14:52:16 -0400 Subject: [PATCH] Update querying.md Add missing `+` operator in the last example of the the `Filtering` section --- doc/gettingstarted/querying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ##