From 19ab7eb8a7a8344a7b7ee1ac646cc60f2059ff0d Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sat, 30 Nov 2013 23:37:50 +0400 Subject: [PATCH] Cosmetics --- src/clojure/monger/core.clj | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/clojure/monger/core.clj b/src/clojure/monger/core.clj index b94ceea..c5255ab 100644 --- a/src/clojure/monger/core.clj +++ b/src/clojure/monger/core.clj @@ -7,17 +7,16 @@ ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. -(ns ^{:author "Michael S. Klishin" - :doc "Thin idiomatic wrapper around MongoDB Java client. monger.core includes - fundamental functions that perform database/replica set connection, set default write concern, default database, performing commands - and so on. Most of the functionality is in other monger.* namespaces, in particular monger.collection, monger.query and monger.gridfs +(ns monger.core + "Thin idiomatic wrapper around MongoDB Java client. monger.core includes + fundamental functions that perform database/replica set connection, set default write concern, default database, performing commands + and so on. Most of the functionality is in other monger.* namespaces, in particular monger.collection, monger.query and monger.gridfs - Related documentation guides: + Related documentation guides: - * http://clojuremongodb.info/articles/connecting.html - * http://clojuremongodb.info/articles/commands.html - * http://clojuremongodb.info/articles/gridfs.html"} - monger.core + * http://clojuremongodb.info/articles/connecting.html + * http://clojuremongodb.info/articles/commands.html + * http://clojuremongodb.info/articles/gridfs.html" (:refer-clojure :exclude [count]) (:use monger.conversion [monger.result :only [ok?]])