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.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/documentation/lux/abstract/monad.lux b/stdlib/source/documentation/lux/abstract/monad.lux
index 2d55ff0c5..07318bce9 100644
--- a/stdlib/source/documentation/lux/abstract/monad.lux
+++ b/stdlib/source/documentation/lux/abstract/monad.lux
@@ -25,9 +25,9 @@
"Apply a function with monadic effects to a monadic value and yield a new monadic value."
[(then monad function)])
-(documentation: /.seq
+(documentation: /.all
"Run all the monadic values in the list and produce a list of the base values."
- [(seq monad)])
+ [(all monad)])
(documentation: /.map
"Apply a monadic function to all values in a list."
@@ -48,7 +48,7 @@
[..Monad
..do
..then
- ..seq
+ ..all
..map
..only
..fold]