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