aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-08-11 16:50:42 -0400
committerEduardo Julian2022-08-11 16:50:42 -0400
commite5625dd840a8b8adc76987f649da254335d3d93a (patch)
treefb672669383525d90d462edf8c141f98bc953894 /stdlib/source/documentation/lux.lux
parent065e8a4d8122d4616b570496915d2c0e2c78cd6b (diff)
Improved exception-definition macro.
Diffstat (limited to 'stdlib/source/documentation/lux.lux')
-rw-r--r--stdlib/source/documentation/lux.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/documentation/lux.lux b/stdlib/source/documentation/lux.lux
index 21b90e2a6..1cf289c4b 100644
--- a/stdlib/source/documentation/lux.lux
+++ b/stdlib/source/documentation/lux.lux
@@ -43,7 +43,7 @@
/world.documentation
))
-(def all/1-4
+(def all_1/4
(List $.Documentation)
(list ($.definition /.prelude
(format "The name of the prelude module"
@@ -172,7 +172,7 @@
(List (Self a))])])
))
-(def all/2-4
+(def all_2/4
(List $.Documentation)
(list ($.definition /.->
"Function types."
@@ -296,7 +296,7 @@
)])
))
-(`` (def all/3-4
+(`` (def all_3/4
(List $.Documentation)
(list ($.definition /.not
"Bit negation."
@@ -620,7 +620,7 @@
(setter value my_record))])
)))
-(`` (def all/4-4
+(`` (def all_4/4
(List $.Documentation)
(list ($.definition /.revised
"Modifies the value of a record at a given tag, based on some function."
@@ -909,10 +909,10 @@
(def .public documentation
(List $.Documentation)
(all list#composite
- all/1-4
- all/2-4
- all/3-4
- all/4-4
+ all_1/4
+ all_2/4
+ all_3/4
+ all_4/4
..sub_modules
))