aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/frp.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-07-02 23:36:02 -0400
committerEduardo Julian2019-07-02 23:36:02 -0400
commit91c0619657bcf2ac520e7dd2912188f66bbe2157 (patch)
treef26675f263eb5f0285c1674b0777a7369248fe07 /stdlib/source/lux/control/concurrency/frp.lux
parent4f191540f831a7bba0e262b1a6b598f99fb9b35c (diff)
Re-name "lux/data/error" to "lux/control/try".
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)