diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 2 |
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) |