davidgtonge / backbone_query

A lightweight query api for Backbone Collections

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typo id docs

opened this issue · comments

There is a typo in the docs.

MyCollection.query({ likes: {$between:[5,15} });

It should be

MyCollection.query({ likes: {$between:[5,15]} });

instead.

Also I would rather replace following:

By default all supplied queries must be matched $and.

with this

By default all supplied queries are treated as $and operator is used.