aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/writer.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/writer.lux
parent39325bb36c6f6459c861ef12f9e99b9e66b52594 (diff)
Re-named the "documentation" macro to "definition".
Diffstat (limited to 'stdlib/source/documentation/lux/control/writer.lux')
-rw-r--r--stdlib/source/documentation/lux/control/writer.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/documentation/lux/control/writer.lux b/stdlib/source/documentation/lux/control/writer.lux
index 58650b8f0..e74e6b47d 100644
--- a/stdlib/source/documentation/lux/control/writer.lux
+++ b/stdlib/source/documentation/lux/control/writer.lux
@@ -16,18 +16,18 @@
($.default /.apply)
($.default /.monad)
- ($.documentation (/.Writer log value)
+ ($.definition (/.Writer log value)
"Represents a value with an associated 'log' to record arbitrary information.")
- ($.documentation /.write
+ ($.definition /.write
"Write a value to the log."
[(write message)])
- ($.documentation /.with
+ ($.definition /.with
"Enhances a monad with Writer functionality."
[(with monoid monad)])
- ($.documentation /.lifted
+ ($.definition /.lifted
"Wraps a monadic value with Writer machinery."
[(lifted monoid monad)])]
[]))