summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2007-09-17 20:26:33 +0000
committerRich Hickey <richhickey@gmail.com>2007-09-17 20:26:33 +0000
commitea5e09adaa197dd9c7cdc933771e8b32d65558a9 (patch)
tree4ea9bf2849a939a7481acf32ec581728b97da7fe /src
parent6ce5a2389ccf4857ed1c10fe33ec3820f49212d3 (diff)
doc update
Diffstat (limited to 'src')
-rw-r--r--src/boot.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.clj b/src/boot.clj
index cf5d2321..cea9fcc3 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -110,8 +110,8 @@
([] 0)
([x] x)
([x y] (. Num (add x y)))
- ([x y & rest]
- (apply thisfn (thisfn x y) rest)))
+ ([x y & more]
+ (apply thisfn (thisfn x y) more)))
(defn *
([] 1)