Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ can be specified:
(def resp (client/get "http://google.com" {:headers h}))
(:headers resp)
=> {"server" "gws",
"content-encoding" "gzip", ;; <= google sent respones gzipped
"content-encoding" "gzip", ;; <= google sent response gzipped
"content-type" "text/html; charset=UTF-8",
"content-length" "26538",
"connection" "close"}
Expand Down Expand Up @@ -291,7 +291,7 @@ body, you can use the `:decode-body-headers` option:
"content-script-type" "text/javascript",
"content-style-type" "text/css",
"content-type" "text/html; charset=Shift_JIS",
"date" "Tue, 09 Oct 2012 18:02:59 GMT",
"date" "Tue, 09 Oct 2012 18:02:59 GMT",
"cache-control" "max-age=0, no-cache",
"expires" "Tue, 09 Oct 2012 18:02:59 GMT",
"etag" "\"1dfb-2686-4cba2686fb8b1\"",
Expand Down
2 changes: 1 addition & 1 deletion src/clj_http/client.clj
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ used. Automatically bound when `with-middleware` is used."
default-middleware)

(defn wrap-request
"Returns a battaries-included HTTP request function coresponding to the given
"Returns a batteries-included HTTP request function corresponding to the given
core client. See default-middleware for the middleware wrappers that are used
by default"
[request]
Expand Down