From 12c33ac9751427c91599596f6ab2f3f506be2f5f Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sat, 30 Nov 2013 23:43:23 +0400 Subject: [PATCH] Cosmetics --- src/clojure/monger/query.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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]