From daa8361c9188cca20bd3498cfccfeb1af02fa81e Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sat, 30 Nov 2013 20:15:41 +0400 Subject: [PATCH] Cosmetics --- src/clojure/monger/command.clj | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/clojure/monger/command.clj b/src/clojure/monger/command.clj index 1db27cc..1e0d699 100644 --- a/src/clojure/monger/command.clj +++ b/src/clojure/monger/command.clj @@ -8,16 +8,16 @@ ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. -(ns ^{:doc "Provides convenience functions for performing most commonly used MongoDB commands. - For a lower-level API that gives maximum flexibility, see `monger.core/command`. To use - MongoDB 2.2 Aggregation Framework, see `monger.collection/aggregate`. +(ns monger.command + "Provides convenience functions for performing most commonly used MongoDB commands. + For a lower-level API that gives maximum flexibility, see `monger.core/command`. To use + MongoDB 2.2 Aggregation Framework, see `monger.collection/aggregate`. - Related documentation guides: + Related documentation guides: - * http://clojuremongodb.info/articles/commands.html - * http://clojuremongodb.info/articles/aggregation.html - * http://clojuremongodb.info/articles/mapreduce.html"} - monger.command + * http://clojuremongodb.info/articles/commands.html + * http://clojuremongodb.info/articles/aggregation.html + * http://clojuremongodb.info/articles/mapreduce.html" (:require monger.core) (:use monger.conversion) (:import com.mongodb.DB))