Cosmetics
This commit is contained in:
parent
6ba204a602
commit
118a6aa872
1 changed files with 8 additions and 8 deletions
|
|
@ -21,7 +21,8 @@
|
||||||
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
;; THE SOFTWARE.
|
;; THE SOFTWARE.
|
||||||
|
|
||||||
(ns ^{:doc "Provides functions that convert between MongoDB Java driver classes (DBObject, DBList) and Clojure
|
(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
|
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
|
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.
|
maps automatically. However, this namespace is part of the public API and guaranteed to be stable between minor releases.
|
||||||
|
|
@ -29,8 +30,7 @@
|
||||||
Related documentation guides:
|
Related documentation guides:
|
||||||
|
|
||||||
* http://clojuremongodb.info/articles/inserting.html
|
* http://clojuremongodb.info/articles/inserting.html
|
||||||
* http://clojuremongodb.info/articles/querying.html"}
|
* http://clojuremongodb.info/articles/querying.html"
|
||||||
monger.conversion
|
|
||||||
(:import [com.mongodb DBObject BasicDBObject BasicDBList DBCursor]
|
(:import [com.mongodb DBObject BasicDBObject BasicDBList DBCursor]
|
||||||
[clojure.lang IPersistentMap Named Keyword Ratio]
|
[clojure.lang IPersistentMap Named Keyword Ratio]
|
||||||
[java.util List Map Date Set]
|
[java.util List Map Date Set]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue