diff options
author | Eduardo Julian | 2017-01-27 06:10:37 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-01-27 06:10:37 -0400 |
commit | 3f76b52f46b58ab0d1dd8846edb43db95c391219 (patch) | |
tree | e6e5e2118c31d177b53becabb697f3c41931c8cb /stdlib/test | |
parent | f81fd718643bfbf81420d3904bfc35d44fa25ed4 (diff) |
- Now, the only way to unfollow a Var is by closing the Chan.
- Following a var no longer requires a label.
Diffstat (limited to 'stdlib/test')
-rw-r--r-- | stdlib/test/test/lux/concurrency/stm.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/test/test/lux/concurrency/stm.lux b/stdlib/test/test/lux/concurrency/stm.lux index ef100d744..10c6a5242 100644 --- a/stdlib/test/test/lux/concurrency/stm.lux +++ b/stdlib/test/test/lux/concurrency/stm.lux @@ -17,7 +17,7 @@ (test: "STM" (do promise;Monad<Promise> [#let [_var (&;var 0) - changes (io;run (&;follow "test" _var))] + changes (io;run (&;follow _var))] output1 (&;commit (&;read _var)) output2 (&;commit (do &;Monad<STM> [_ (&;write 5 _var)] |