aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/stm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/control/concurrency/stm.lux')
-rw-r--r--stdlib/source/lux/control/concurrency/stm.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/control/concurrency/stm.lux b/stdlib/source/lux/control/concurrency/stm.lux
index 6d1fd0d3b..1bc69f5e2 100644
--- a/stdlib/source/lux/control/concurrency/stm.lux
+++ b/stdlib/source/lux/control/concurrency/stm.lux
@@ -15,7 +15,7 @@
[//
["." atom (#+ Atom atom)]
["." promise (#+ Promise Resolver)]
- ["." frp ("#;." functor)]])
+ ["." frp]])
(type: #export (Observer a)
(-> a (IO Any)))
@@ -131,7 +131,7 @@
[(#.Cons [var (read!! var) value] tx)
[]])))
-(structure: #export _ (Functor STM)
+(structure: #export functor (Functor STM)
(def: (map f fa)
(function (_ tx)
(let [[tx' a] (fa tx)]