From b99702468c9f6a0a4003ce6ab068a1678c5e942b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 27 Jun 2019 13:40:52 -0400 Subject: [PATCH] Update concurrent.md --- docs/api/cyclone/concurrent.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/api/cyclone/concurrent.md b/docs/api/cyclone/concurrent.md index b9dcca38..10e26acd 100644 --- a/docs/api/cyclone/concurrent.md +++ b/docs/api/cyclone/concurrent.md @@ -156,7 +156,9 @@ Based on the procedure of the same name from Clojure. (compare-and-set! atom oldval newval) -Atomically changes the value of `atom` to `newval` but only if the value of `atom` is currently equal to `oldval`. Based on the procedure of the same name from Clojure. This is also commonly known as the compare-and-swap (CAS) atomic instruction. +Atomically changes the value of `atom` to `newval` but only if the value of `atom` is currently equal to `oldval`. This is also commonly known as the compare-and-swap (CAS) atomic instruction. + +Based on the procedure of the same name from Clojure. ## Futures