aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/csp.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/control/concurrency/csp.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/csp.lux b/stdlib/source/library/lux/control/concurrency/csp.lux
index f8cd41a77..442fd5f36 100644
--- a/stdlib/source/library/lux/control/concurrency/csp.lux
+++ b/stdlib/source/library/lux/control/concurrency/csp.lux
@@ -64,12 +64,12 @@
(def .public (write value sink)
(All (_ w)
(-> w (Sink w) (Process Any)))
- (async.future (at sink feed value)))
+ (async.future (of sink feed value)))
(def .public (close sink)
(All (_ w)
(-> (Sink w) (Process Any)))
- (async.future (at sink close)))
+ (async.future (of sink close)))
(def .public try
(All (_ a) (-> (Process a) (Process (Try a))))