aboutsummaryrefslogtreecommitdiff
path: root/source/lux/codata/function.lux
diff options
context:
space:
mode:
authorEduardo Julian2015-09-30 16:44:42 -0400
committerEduardo Julian2015-09-30 16:44:42 -0400
commit1ff2c6ced65171a68ef761275a75ba4dc56caf7b (patch)
treeb48cae02fb1276554a619a87484bf161a4ea1498 /source/lux/codata/function.lux
parent57ed0ef20db8f6ae926c1f7580f5bfa26928612b (diff)
- Changed the license in the project.clj file (had forgotten until now).
- Some minor updates to the standard library. - Some minor bug fixes & improvements. - program.lux has been removed.
Diffstat (limited to '')
-rw-r--r--source/lux/codata/function.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lux/codata/function.lux b/source/lux/codata/function.lux
index a23e969b3..1b7336049 100644
--- a/source/lux/codata/function.lux
+++ b/source/lux/codata/function.lux
@@ -14,7 +14,7 @@
(def #export (flip f)
(All [a b c]
(-> (-> a b c) (-> b a c)))
- (lambda [y x] (f x y)))
+ (lambda [x y] (f y x)))
(def #export (. f g)
(All [a b c]