aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/atom.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/control/concurrency/atom.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/atom.lux b/stdlib/source/library/lux/control/concurrency/atom.lux
index 3a4b2ad24..cc075549e 100644
--- a/stdlib/source/library/lux/control/concurrency/atom.lux
+++ b/stdlib/source/library/lux/control/concurrency/atom.lux
@@ -87,7 +87,7 @@
swapped? (compare_and_swap! old new atom)]
(if swapped?
(in [old new])
- (recur [])))))
+ (again [])))))
(def: .public (write! value atom)
(All (_ a) (-> a (Atom a) (IO a)))