diff --git a/README.md b/README.md index 97bce52..95dddef 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ You can also create a client and get a DB manually: (def client (mcl/create "mongodb://localhost:27017")) ;; Create a db that you can pass around. -(def db (mcl/get-db client "my-db:)) +(def db (mcl/get-db client "my-db")) ``` ### Collection functions @@ -100,7 +100,7 @@ As an example: ; => a MongoIterable ;; Find a single document or return nil -(mc/find-one db "test' {:v "world"} {:keywordize? false}) +(mc/find-one db "test" {:v "world"} {:keywordize? false}) ; => {"v" "world"} ``` diff --git a/project.clj b/project.clj index c9e324a..2258f83 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject mongo-driver-3 "0.3.1" +(defproject mongo-driver-3 "0.3.2-SNAPSHOT" :description "A Clojure wrapper for the Java MongoDB driver 3.11+." :url "https://github.com/gnarroway/mongo-driver-3" :license {:name "The MIT License"