aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/promise.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/concurrency/promise.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/concurrency/promise.lux b/stdlib/source/lux/control/concurrency/promise.lux
index acba089fd..8e0acf8b9 100644
--- a/stdlib/source/lux/control/concurrency/promise.lux
+++ b/stdlib/source/lux/control/concurrency/promise.lux
@@ -91,7 +91,7 @@
(#.Some _)
#1)))))
-(structure: #export functor
+(implementation: #export functor
(Functor Promise)
(def: (map f fa)
@@ -99,7 +99,7 @@
(exec (io.run (..await (|>> f resolve) fa))
fb))))
-(structure: #export apply
+(implementation: #export apply
(Apply Promise)
(def: &functor ..functor)
@@ -111,7 +111,7 @@
ff))
fb))))
-(structure: #export monad
+(implementation: #export monad
(Monad Promise)
(def: &functor ..functor)