diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2009-08-12 22:10:06 -0400 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2009-08-12 22:10:06 -0400 |
commit | ebba2e312d18692934299ccf2a238e2e344e5d2c (patch) | |
tree | 527051628633f77d28c07f35012fd1ce9bfcb216 /src/clojure/contrib | |
parent | cb1432c492ce086f1c7145287eb5d14ccf9b024b (diff) |
http/connection.clj: fixed typo in method name
Diffstat (limited to 'src/clojure/contrib')
-rw-r--r-- | src/clojure/contrib/http/connection.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/http/connection.clj b/src/clojure/contrib/http/connection.clj index 81d897c9..d664f237 100644 --- a/src/clojure/contrib/http/connection.clj +++ b/src/clojure/contrib/http/connection.clj @@ -28,7 +28,7 @@ send-request-entity (fn [conn entity] (type entity))) (defmethod send-request-entity duck/*byte-array-type* [conn entity] - (.setFixedLenghtStreamingMode conn (count entity)) + (.setFixedLengthStreamingMode conn (count entity)) (duck/copy entity (.getOutputStream conn))) (defmethod send-request-entity String [conn entity] |