aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/thread.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/thread.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/thread.lux b/stdlib/source/lux/control/thread.lux
index 74d5940bc..39acb2192 100644
--- a/stdlib/source/lux/control/thread.lux
+++ b/stdlib/source/lux/control/thread.lux
@@ -67,7 +67,7 @@
(IO a)))
(|>> ..run io.io))
-(structure: #export functor
+(implementation: #export functor
(All [!] (Functor (Thread !)))
(def: (map f)
@@ -75,7 +75,7 @@
(function (_ !)
(f (fa !))))))
-(structure: #export apply
+(implementation: #export apply
(All [!] (Apply (Thread !)))
(def: &functor ..functor)
@@ -84,7 +84,7 @@
(function (_ !)
((ff !) (fa !)))))
-(structure: #export monad
+(implementation: #export monad
(All [!] (Monad (Thread !)))
(def: &functor ..functor)