aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux.lux b/stdlib/source/lux.lux
index 8d6a1d323..bbf765e9a 100644
--- a/stdlib/source/lux.lux
+++ b/stdlib/source/lux.lux
@@ -1597,7 +1597,7 @@
(fail "Wrong syntax for $_")}
tokens))
-## (sig: (Monad m)
+## (signature: (Monad m)
## (: (All [a] (-> a (m a)))
## wrap)
## (: (All [a b] (-> (-> a (m b)) (m a) (m b)))
@@ -3471,9 +3471,9 @@
#None
(fail "Wrong syntax for macro:"))))
-(macro: #export (sig: tokens)
+(macro: #export (signature: tokens)
{#.doc "## Definition of signatures ala ML.
- (sig: #export (Ord a)
+ (signature: #export (Ord a)
(: (Equivalence a)
eq)
(: (-> a a Bool)
@@ -3534,7 +3534,7 @@
(return (list (` (..type: (~+ (export exported?)) (~ usage) (~ sig-meta) (~ sig-type))))))
#None
- (fail "Wrong syntax for sig:"))))
+ (fail "Wrong syntax for signature:"))))
(def: (find f xs)
(All [a b]