From e89782686e0974eb9d778a2011b3f77bef6fa804 Mon Sep 17 00:00:00 2001 From: Will Date: Tue, 7 Apr 2020 10:44:51 -0700 Subject: [PATCH] correct medley deps in README (#335) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53b82d32..da8d8fcd 100644 --- a/README.md +++ b/README.md @@ -850,13 +850,13 @@ Ran 1 tests containing 0 assertions. Requires `bb` >= v0.0.71. Latest coordinates checked with with bb: ``` clojure -{:git/url "https://github.com/weavejester" :sha "a4e5fb5383f5c0d83cb2d005181a35b76d8a136d"} +{:git/url "https://github.com/weavejester/medley" :sha "a4e5fb5383f5c0d83cb2d005181a35b76d8a136d"} ``` Example: ``` shell -$ export BABASHKA_CLASSPATH=$(clojure -Spath -Sdeps '{:deps {medley {:git/url "https://github.com/weavejester" :sha "a4e5fb5383f5c0d83cb2d005181a35b76d8a136d"}}}') +$ export BABASHKA_CLASSPATH=$(clojure -Spath -Sdeps '{:deps {medley {:git/url "https://github.com/weavejester/medley" :sha "a4e5fb5383f5c0d83cb2d005181a35b76d8a136d"}}}') $ bb -e "(require '[medley.core :as m]) (m/index-by :id [{:id 1} {:id 2}])" {1 {:id 1}, 2 {:id 2}}