aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/frp.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 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."}