From 041568520126985dd0ad537494530ad60b9907ce Mon Sep 17 00:00:00 2001 From: Evgeny Uspenskiy Date: Thu, 2 Jul 2015 12:58:47 +0300 Subject: [PATCH] Update README.md lt("foo",3).gt("foo",10) => foo < 3 & foo > 10 - can not be gt("foo",3).lt("foo",10) => foo > 3 & foo < 10 - may be --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8d30af..5b381c3 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ This module allows us to construct queries. With the query object, we could exec RQL operators as methods against the query object. For example: var Query = require("rql/query").Query; - var fooBetween3And10Query = new Query().lt("foo",3).gt("foo",10); + var fooBetween3And10Query = new Query().gt("foo",3).lt("foo",10); ## rql/parser