summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Pratley <timothypratley@gmail.com>2010-04-11 17:45:49 +1000
committerStuart Halloway <stu@thinkrelevance.com>2010-06-02 09:34:07 -0400
commit5e4cc4bb5866a69a0f9c38c8c9a8445b84c41849 (patch)
treed62b2dc4101d21962e1d85f3095d2e5e3fec8458
parentf47b3d6f028e0370c495383731a449092d0ae451 (diff)
doto doc typo fix
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-rw-r--r--src/clj/clojure/core.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj
index b3f364c6..c0d8ef36 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -2919,7 +2919,7 @@
(defmacro doto
"Evaluates x then calls all of the methods and functions with the
- value of x supplied at the from of the given arguments. The forms
+ value of x supplied at the front of the given arguments. The forms
are evaluated in order. Returns x.
(doto (new java.util.HashMap) (.put \"a\" 1) (.put \"b\" 2))"