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 cdf12eedf..9b2772a52 100644
--- a/stdlib/source/documentation/lux/abstract/monad.lux
+++ b/stdlib/source/documentation/lux/abstract/monad.lux
@@ -29,9 +29,9 @@
"Run all the monadic values in the list and produce a list of the base values."
[(all monad)])
-(documentation: /.map
+(documentation: /.each
"Apply a monadic function to all values in a list."
- [(map monad function items)])
+ [(each monad function items)])
(documentation: /.only
"Filter the values in a list with a monadic function."
@@ -49,7 +49,7 @@
..do
..then
..all
- ..map
+ ..each
..only
..mix]
[/free.documentation]))