aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/thread.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/thread.lux')
-rw-r--r--stdlib/source/library/lux/control/thread.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/control/thread.lux b/stdlib/source/library/lux/control/thread.lux
index 8366b2efc..a7acf841e 100644
--- a/stdlib/source/library/lux/control/thread.lux
+++ b/stdlib/source/library/lux/control/thread.lux
@@ -71,7 +71,7 @@
(implementation: .public functor
(All [!] (Functor (Thread !)))
- (def: (map f)
+ (def: (each f)
(function (_ fa)
(function (_ !)
(f (fa !))))))
@@ -94,7 +94,7 @@
(function (_ !)
value))
- (def: (join ffa)
+ (def: (conjoint ffa)
(function (_ !)
((ffa !) !))))