diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/control/concurrency/actor.lux | 6 | ||||
-rw-r--r-- | stdlib/source/lux/control/concurrency/frp.lux | 6 | ||||
-rw-r--r-- | stdlib/source/lux/control/concurrency/stm.lux | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/lux/control/concurrency/actor.lux b/stdlib/source/lux/control/concurrency/actor.lux index 3e288ca42..6707a6c4d 100644 --- a/stdlib/source/lux/control/concurrency/actor.lux +++ b/stdlib/source/lux/control/concurrency/actor.lux @@ -3,14 +3,14 @@ [control monad ["p" parser] ["ex" exception (#+ exception:)]] - ["." io ("io/." monad)] + ["." io ("#/." monad)] [data ["." product] ["e" error] [text format] [collection - ["." list ("list/." monoid monad fold)]]] + ["." list ("#/." monoid monad fold)]]] ["." macro (#+ with-gensyms monad) ["." code] ["s" syntax (#+ syntax: Syntax)] @@ -23,7 +23,7 @@ abstract]] [// ["." atom (#+ Atom atom)] - ["." promise (#+ Promise Resolver) ("promise/." monad)] + ["." promise (#+ Promise Resolver) ("#/." monad)] ["." task (#+ Task)]]) (exception: #export poisoned) diff --git a/stdlib/source/lux/control/concurrency/frp.lux b/stdlib/source/lux/control/concurrency/frp.lux index 5412e5342..52c59f7a4 100644 --- a/stdlib/source/lux/control/concurrency/frp.lux +++ b/stdlib/source/lux/control/concurrency/frp.lux @@ -9,15 +9,15 @@ ["." monad (#+ Monad do)] ["ex" exception (#+ exception:)]] [data - [maybe ("maybe/." functor)] + ["." maybe ("#/." functor)] ["." error (#+ Error)] [collection - [list ("list/." monoid)]]] + ["." list ("#/." monoid)]]] [type (#+ :share) abstract]] [// ["." atom (#+ Atom)] - ["." promise (#+ Promise) ("promise/." functor)]]) + ["." promise (#+ Promise) ("#/." functor)]]) (type: #export (Channel a) {#.doc "An asynchronous channel to distribute values."} diff --git a/stdlib/source/lux/control/concurrency/stm.lux b/stdlib/source/lux/control/concurrency/stm.lux index 5bb537025..8b26eb699 100644 --- a/stdlib/source/lux/control/concurrency/stm.lux +++ b/stdlib/source/lux/control/concurrency/stm.lux @@ -15,7 +15,7 @@ [// ["." atom (#+ Atom atom)] ["." promise (#+ Promise Resolver)] - ["." frp ("frp/." functor)]]) + ["." frp ("#/." functor)]]) (type: #export (Observer a) (-> a (IO Any))) |