Modified:
trunk/src/clojure/contrib/http/agent.clj
Log:
http/agent.clj: fixed typo
Modified: trunk/src/clojure/contrib/http/agent.clj
==============================================================================
--- trunk/src/clojure/contrib/http/agent.clj (original)
+++ trunk/src/clojure/contrib/http/agent.clj Tue Jun 9 10:38:26 2009
@@ -26,7 +26,7 @@
(defn- success? [conn]
;; Is the response in the 2xx range?
- (= 2 (unchecked-divide (.getResponseCode conn)) 100))
+ (= 2 (unchecked-divide (.getResponseCode conn) 100)))
(defn- do-http-agent-request [state options]
(let [conn (::connection state)]