aboutsummaryrefslogtreecommitdiff
path: root/source/lux/codata/function.lux
diff options
context:
space:
mode:
authorEduardo Julian2015-08-29 23:17:27 -0400
committerEduardo Julian2015-08-29 23:17:27 -0400
commit196f56b83ed357169efb75b864f81f26c10641f1 (patch)
tree33a17c9f3e2058e14b08f10ab700990447b510ac /source/lux/codata/function.lux
parent253d5a4a3f7ef5d42c467733e394a28d18a4d9b3 (diff)
- Remove the (unnec) "All'" and "->'" macros.
- Improved the "struct" macro so that (once again) it doesn't ask for the prefixes of the members. - Added tests for the lux.reader namespace.
Diffstat (limited to '')
-rw-r--r--source/lux/codata/function.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lux/codata/function.lux b/source/lux/codata/function.lux
index ea79ff9ad..a23e969b3 100644
--- a/source/lux/codata/function.lux
+++ b/source/lux/codata/function.lux
@@ -23,5 +23,5 @@
## [Structures]
(defstruct #export Comp/Monoid (All [a] (m;Monoid (-> a a)))
- (def m;unit id)
- (def m;++ .))
+ (def unit id)
+ (def ++ .))