aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/writer.lux
diff options
context:
space:
mode:
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)])]
[]))