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