aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/abstract/monad.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/abstract/monad.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/documentation/lux/abstract/monad.lux b/stdlib/source/documentation/lux/abstract/monad.lux
index 3e160d0fe..7f35e4b7d 100644
--- a/stdlib/source/documentation/lux/abstract/monad.lux
+++ b/stdlib/source/documentation/lux/abstract/monad.lux
@@ -14,34 +14,34 @@
(.List $.Module)
($.module /._
""
- [($.documentation (/.Monad it)
+ [($.definition (/.Monad it)
(format "A monad is a monoid in the category of endofunctors."
\n "What's the problem?"))
- ($.documentation /.do
+ ($.definition /.do
"Macro for easy concatenation of monadic operations."
[(do monad
[y (f1 x)
z (f2 z)]
(in (f3 z)))])
- ($.documentation /.then
+ ($.definition /.then
"Apply a function with monadic effects to a monadic value and yield a new monadic value."
[(then monad function)])
- ($.documentation /.all
+ ($.definition /.all
"Run all the monadic values in the list and produce a list of the base values."
[(all monad)])
- ($.documentation /.each
+ ($.definition /.each
"Apply a monadic function to all values in a list."
[(each monad function items)])
- ($.documentation /.only
+ ($.definition /.only
"Filter the values in a list with a monadic function."
[(only monad predicate items)])
- ($.documentation /.mix
+ ($.definition /.mix
"Mix a list with a monadic function."
[(mix monad function initial_value items)])]
[/free.documentation]))