aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/function.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/function.lux')
-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 f687f6fd5..919e19371 100644
--- a/stdlib/source/lux/function.lux
+++ b/stdlib/source/lux/function.lux
@@ -8,7 +8,7 @@
(-> (-> b c) (-> a b) (-> a c)))
(|>> g f))
-(def: #export (const c)
+(def: #export (constant c)
{#.doc "Create constant functions."}
(All [a b] (-> a (-> b a)))
(function (_ _) c))