summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2007-12-10 21:58:17 +0000
committerRich Hickey <richhickey@gmail.com>2007-12-10 21:58:17 +0000
commitb714638884d9b62c7b91b14a374b6988fb3e882d (patch)
treea4a904f89b467f96ee12e62b65507015cb867824 /src
parent30ce439346a5ed5aa1a7189ff1d932854486f0d3 (diff)
fixed reduce parameter reordering
Diffstat (limited to 'src')
-rw-r--r--src/boot.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.clj b/src/boot.clj
index 74e0989c..5fb66883 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -402,7 +402,7 @@
(defn reduce
([f coll]
(if (seq coll)
- (thisfn f (rest coll) (first coll))
+ (thisfn f (first coll) (rest coll))
(f)))
([f val coll]
(if (seq coll)