summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/boot.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.clj b/src/boot.clj
index 6a734a88..ba29331d 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -344,7 +344,7 @@
(recur ((first fs) ret) (rest fs))
ret)))))
-(defn curry
+(defn appl
([f arg1]
(fn [& args] (apply f arg1 args)))
([f arg1 arg2]