diff --git a/src/clojure/monger/query.clj b/src/clojure/monger/query.clj index bae17bf..afbca75 100644 --- a/src/clojure/monger/query.clj +++ b/src/clojure/monger/query.clj @@ -7,11 +7,11 @@ ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. -(ns ^{:doc "Provides an expressive Query DSL that is very close to that in the Mongo shell (within reason). - This is the most flexible and recommended way to query with Monger. Queries can be composed, like in Korma. +(ns monger.query + "Provides an expressive Query DSL that is very close to that in the Mongo shell (within reason). + This is the most flexible and recommended way to query with Monger. Queries can be composed, like in Korma. - Related documentation guide: http://clojuremongodb.info/articles/querying.html"} - monger.query + Related documentation guide: http://clojuremongodb.info/articles/querying.html" (:refer-clojure :exclude [select find sort]) (:require [monger.core] [monger.internal pagination]