operator docs

This commit is contained in:
George Narroway 2019-11-22 13:50:54 +08:00
parent f3aadc7670
commit c723f2a36f

View file

@ -132,7 +132,7 @@ Many mongo queries take operators like `$eq` and `$gt`. These are exposed in the
(mc/find db "test" {:a {$gt 3}})
;; This is equivalent to, but with less chance of error than:
(mc/find db "test" {:a {:$gt 3}})
(mc/find db "test" {:a {"$gt" 3}})
```
## License