From 431a18e8ba2e3ab8d671bca615c4120b6e48506f Mon Sep 17 00:00:00 2001 From: George Narroway Date: Sun, 17 Nov 2019 14:06:57 +0800 Subject: [PATCH] typos --- README.md | 4 ++-- project.clj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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"