From 23200d2a1637bf237593f289b9452a2cf5b983d7 Mon Sep 17 00:00:00 2001 From: Naoya Yamashita Date: Fri, 5 Jul 2024 06:06:38 +0900 Subject: [PATCH] add missing double quote (#59) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca31023..999671a 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ To send multiple params to the same key: ```clojure ;; https://postman-echo.com/get?q=clojure&q=curl -(-> (http/get "https://postman-echo.com/get" {:query-params {:q ["clojure "curl"]}}) +(-> (http/get "https://postman-echo.com/get" {:query-params {:q ["clojure" "curl"]}}) :body (json/parse-string true) :args) ;;=> {:q ["clojure" "curl"]} ```