aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/reader.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-07-08 17:47:23 -0400
committerEduardo Julian2022-07-08 17:47:23 -0400
commit7976268575e7c6910dfba2d2733e8cc1883678e7 (patch)
tree0ce156081612235c0df5e2ad9167be3fc5d75c6c /stdlib/source/documentation/lux/control/reader.lux
parent39325bb36c6f6459c861ef12f9e99b9e66b52594 (diff)
Re-named the "documentation" macro to "definition".
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/control/reader.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/documentation/lux/control/reader.lux b/stdlib/source/documentation/lux/control/reader.lux
index eaac93dc5..94b74cbe7 100644
--- a/stdlib/source/documentation/lux/control/reader.lux
+++ b/stdlib/source/documentation/lux/control/reader.lux
@@ -16,24 +16,24 @@
($.default /.apply)
($.default /.monad)
- ($.documentation (/.Reader environment it)
+ ($.definition (/.Reader environment it)
"Computations that have access to some environmental value.")
- ($.documentation /.read
+ ($.definition /.read
"Get the environment.")
- ($.documentation /.local
+ ($.definition /.local
"Run computation with a locally-modified environment."
[(local change proc)])
- ($.documentation /.result
+ ($.definition /.result
"Executes the reader against the given environment."
[(result env proc)])
- ($.documentation /.with
+ ($.definition /.with
"Monad transformer for Reader."
[(with monad)])
- ($.documentation /.lifted
+ ($.definition /.lifted
"Lift monadic values to the Reader wrapper.")]
[]))