Skip to content

Commit

Permalink
add missing double quote (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
conao3 committed Jul 4, 2024
1 parent 1035b1e commit 23200d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]}
```
Expand Down

0 comments on commit 23200d2

Please sign in to comment.