aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/action.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/action.lux')
-rw-r--r--stdlib/source/program/aedifex/action.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/program/aedifex/action.lux b/stdlib/source/program/aedifex/action.lux
index 61c5ba3de..2da97fde2 100644
--- a/stdlib/source/program/aedifex/action.lux
+++ b/stdlib/source/program/aedifex/action.lux
@@ -6,11 +6,11 @@
[control
["." try (#+ Try)]
[concurrency
- ["." promise (#+ Promise)]]]]])
+ ["." async (#+ Async)]]]]])
(type: #export (Action a)
- (Promise (Try a)))
+ (Async (Try a)))
(def: #export monad
(Monad Action)
- (:assume (try.with promise.monad)))
+ (:assume (try.with async.monad)))