diff --git a/src/clojure/monger/cursor.clj b/src/clojure/monger/cursor.clj index 8a083b9..ed65233 100644 --- a/src/clojure/monger/cursor.clj +++ b/src/clojure/monger/cursor.clj @@ -20,8 +20,10 @@ (defn ^DBCursor make-db-cursor "initializes new db-cursor." - ([^String collection] (make-db-cursor collection {} {})) - ([^String collection ^Map ref] (make-db-cursor collection ref {})) + ([^String collection] + (make-db-cursor collection {} {})) + ([^String collection ^Map ref] + (make-db-cursor collection ref {})) ([^String collection ^Map ref fields] (.find (.getCollection monger.core/*mongodb-database* (name collection))