diff options
Diffstat (limited to 'stdlib/source/lux/concurrency/stm.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/stm.lux | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/lux/concurrency/stm.lux b/stdlib/source/lux/concurrency/stm.lux index 26bcf4c36..8039738df 100644 --- a/stdlib/source/lux/concurrency/stm.lux +++ b/stdlib/source/lux/concurrency/stm.lux @@ -1,14 +1,14 @@ (.module: lux - (lux (control [functor #+ Functor] - [apply #+ Apply] - [monad #+ do Monad]) - [io #+ IO io] + (lux (control [functor (#+ Functor)] + [apply (#+ Apply)] + [monad (#+ do Monad)]) + [io (#+ IO io)] (data [product] [maybe] (collection [list "list/" Functor<List> Fold<List>])) - (concurrency [atom #+ Atom atom] - [promise #+ Promise promise] + (concurrency [atom (#+ Atom atom)] + [promise (#+ Promise promise)] [frp "frp/" Functor<Channel>]) (type abstract))) |