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 5709b41bb..b54de05ef 100644
--- a/stdlib/source/lux/control/thread.lux
+++ b/stdlib/source/lux/control/thread.lux
@@ -33,7 +33,7 @@
a))
(thread []))
-(struct: #export Functor<Thread>
+(structure: #export Functor<Thread>
(All [!] (Functor (Thread !)))
(def: (map f)
@@ -41,7 +41,7 @@
(function (_ !)
(f (fa !))))))
-(struct: #export Apply<Thread>
+(structure: #export Apply<Thread>
(All [!] (Apply (Thread !)))
(def: functor Functor<Thread>)
@@ -50,7 +50,7 @@
(function (_ !)
((ff !) (fa !)))))
-(struct: #export Monad<Thread>
+(structure: #export Monad<Thread>
(All [!] (Monad (Thread !)))
(def: functor Functor<Thread>)