aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/frp.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/control/concurrency/frp.lux')
-rw-r--r--stdlib/source/lux/control/concurrency/frp.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/concurrency/frp.lux b/stdlib/source/lux/control/concurrency/frp.lux
index ac145f78a..2be15ea23 100644
--- a/stdlib/source/lux/control/concurrency/frp.lux
+++ b/stdlib/source/lux/control/concurrency/frp.lux
@@ -7,11 +7,11 @@
[apply (#+ Apply)]
["." monad (#+ Monad do)]]
[control
+ ["." try (#+ Try)]
["ex" exception (#+ exception:)]
["." io (#+ IO io)]]
[data
["." maybe ("#@." functor)]
- ["." error (#+ Error)]
[collection
["." list ("#@." monoid)]]]
[type (#+ :share)
@@ -27,9 +27,9 @@
(exception: #export channel-is-already-closed)
(signature: #export (Sink a)
- (: (IO (Error Any))
+ (: (IO (Try Any))
close)
- (: (-> a (IO (Error Any)))
+ (: (-> a (IO (Try Any)))
feed))
(def: (sink resolve)