diff options
Diffstat (limited to 'stdlib/source/lux/control/concurrency')
-rw-r--r-- | stdlib/source/lux/control/concurrency/stm.lux | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/source/lux/control/concurrency/stm.lux b/stdlib/source/lux/control/concurrency/stm.lux index 3c4c26f59..9c82788ad 100644 --- a/stdlib/source/lux/control/concurrency/stm.lux +++ b/stdlib/source/lux/control/concurrency/stm.lux @@ -168,7 +168,8 @@ (def: &functor ..functor) (def: (wrap a) - (function (_ tx) [tx a])) + (function (_ tx) + [tx a])) (def: (join mma) (function (_ tx) |