aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/concurrency/stm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/concurrency/stm.lux20
1 files changed, 11 insertions, 9 deletions
diff --git a/stdlib/source/lux/concurrency/stm.lux b/stdlib/source/lux/concurrency/stm.lux
index 88d0ed6ed..b19188a86 100644
--- a/stdlib/source/lux/concurrency/stm.lux
+++ b/stdlib/source/lux/concurrency/stm.lux
@@ -3,17 +3,19 @@
[control
[functor (#+ Functor)]
[apply (#+ Apply)]
- [monad (#+ do Monad)]]
- [io (#+ IO io)]
+ ["." monad (#+ do Monad)]]
+ ["." io (#+ IO io)]
[data
- [product]
- [maybe]
- [collection [list ("list/" Functor<List> Fold<List>)]]]
+ ["." product]
+ ["." maybe]
+ [collection
+ ["." list ("list/" Functor<List> Fold<List>)]]]
[concurrency
- [atom (#+ Atom atom)]
- [promise (#+ Promise promise)]
- [frp ("frp/" Functor<Channel>)]]
- [type abstract]])
+ ["." atom (#+ Atom atom)]
+ ["." promise (#+ Promise promise)]
+ ["." frp ("frp/" Functor<Channel>)]]
+ [type
+ abstract]])
(abstract: #export (Var a)
{#.doc "A mutable cell containing a value, and observers that will be alerted of any change to it."}