aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/concurrency/task.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/concurrency/task.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/concurrency/task.lux b/stdlib/source/lux/concurrency/task.lux
index 374acee46..b65d7c563 100644
--- a/stdlib/source/lux/concurrency/task.lux
+++ b/stdlib/source/lux/concurrency/task.lux
@@ -27,7 +27,7 @@
(def: #export (try computation)
(All [a] (-> (Task a) (Task (E;Error a))))
- (:: P;Functor<Promise> map (|>. #E;Success) computation))
+ (:: P;Functor<Promise> map (|>> #E;Success) computation))
(struct: #export _ (F;Functor Task)
(def: (map f fa)
@@ -76,4 +76,4 @@
(def: #export (from-promise promise)
(All [a] (-> (P;Promise a) (Task a)))
- (:: P;Functor<Promise> map (|>. #E;Success) promise))
+ (:: P;Functor<Promise> map (|>> #E;Success) promise))