aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/stm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/concurrency/stm.lux')
-rw-r--r--stdlib/source/library/lux/control/concurrency/stm.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/stm.lux b/stdlib/source/library/lux/control/concurrency/stm.lux
index 523227a27..db8b266c8 100644
--- a/stdlib/source/library/lux/control/concurrency/stm.lux
+++ b/stdlib/source/library/lux/control/concurrency/stm.lux
@@ -1,12 +1,12 @@
(.module:
[library
- [lux #*
+ [lux "*"
[abstract
- [functor (#+ Functor)]
- [apply (#+ Apply)]
- ["." monad (#+ Monad do)]]
+ [functor {"+" [Functor]}]
+ [apply {"+" [Apply]}]
+ ["." monad {"+" [Monad do]}]]
[control
- ["." io (#+ IO io)]
+ ["." io {"+" [IO io]}]
["." maybe]
["." try]]
[data
@@ -16,9 +16,9 @@
[type
abstract]]]
[//
- ["." atom (#+ Atom atom)]
- ["." async (#+ Async Resolver)]
- ["." frp (#+ Channel Sink)]])
+ ["." atom {"+" [Atom atom]}]
+ ["." async {"+" [Async Resolver]}]
+ ["." frp {"+" [Channel Sink]}]])
(type: (Observer a)
(-> a (IO Any)))