aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/function.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/function.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/function.lux b/stdlib/source/lux/function.lux
index 2fe4d6c1f..977886551 100644
--- a/stdlib/source/lux/function.lux
+++ b/stdlib/source/lux/function.lux
@@ -19,6 +19,6 @@
(-> (-> a b c) (-> b a c)))
(function [x y] (f y x)))
-(struct: #export Monoid<Function> (Monoid (All [a] (-> a a)))
+(struct: #export Monoid<Function> (All [a] (Monoid (-> a a)))
(def: identity id)
(def: compose ..compose))