From 6633d8b674a3785cbec600d2e30d70de19da1ce0 Mon Sep 17 00:00:00 2001 From: Peter Nagy Date: Wed, 8 Jan 2020 08:45:41 +0100 Subject: [PATCH] fixes clj-http-lite example in README (#226) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8570bb57..ffb50eaa 100644 --- a/README.md +++ b/README.md @@ -604,7 +604,7 @@ babashka. Requires `bb` >= v0.0.58. This fork does not depend on any other libraries. Example: ``` shell -$ export BABASHKA_CLASSPATH="$(clojure -Sdeps '{:deps {limit-break {:git/url "https://github.com/borkdude/clj-http-lite" :sha "f44ebe45446f0f44f2b73761d102af3da6d0a13e"}}}' -Spath)" +$ export BABASHKA_CLASSPATH="$(clojure -Sdeps '{:deps {clj-http-lite {:git/url "https://github.com/borkdude/clj-http-lite" :sha "f44ebe45446f0f44f2b73761d102af3da6d0a13e"}}}' -Spath)" $ bb "(require '[clj-http.lite.client :as client]) (:status (client/get \"https://www.clojure.org\"))" 200