diff --git a/src/clojure/monger/conversion.clj b/src/clojure/monger/conversion.clj index 5c2f568..e4b7d77 100644 --- a/src/clojure/monger/conversion.clj +++ b/src/clojure/monger/conversion.clj @@ -21,16 +21,16 @@ ;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ;; THE SOFTWARE. -(ns ^{:doc "Provides functions that convert between MongoDB Java driver classes (DBObject, DBList) and Clojure - data structures (maps, collections). Most of the time, application developers won't need to use these - functions directly because Monger Query DSL and many other functions convert documents to Clojure sequences and - maps automatically. However, this namespace is part of the public API and guaranteed to be stable between minor releases. +(ns monger.conversion + "Provides functions that convert between MongoDB Java driver classes (DBObject, DBList) and Clojure + data structures (maps, collections). Most of the time, application developers won't need to use these + functions directly because Monger Query DSL and many other functions convert documents to Clojure sequences and + maps automatically. However, this namespace is part of the public API and guaranteed to be stable between minor releases. - Related documentation guides: + Related documentation guides: - * http://clojuremongodb.info/articles/inserting.html - * http://clojuremongodb.info/articles/querying.html"} - monger.conversion + * http://clojuremongodb.info/articles/inserting.html + * http://clojuremongodb.info/articles/querying.html" (:import [com.mongodb DBObject BasicDBObject BasicDBList DBCursor] [clojure.lang IPersistentMap Named Keyword Ratio] [java.util List Map Date Set]