From 164974550a770b1c441ad1f3d49297e075aa876e Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 27 Jun 2019 13:39:56 -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 ddb68b29..b9dcca38 100644 --- a/docs/api/cyclone/concurrent.md +++ b/docs/api/cyclone/concurrent.md @@ -97,7 +97,9 @@ Dereference; returns the current value of the given concurrency object. ## Atoms -This section provides atomic operations. The API is modelled after Clojure's [Atoms](https://clojure.org/reference/atoms). Per the Clojure docs: +This section provides atomic operations modelled after Clojure's [Atoms](https://clojure.org/reference/atoms). + +Per the Clojure docs: > Atoms are an efficient way to represent some state that will never need to be coordinated with any other, and for which you wish to make synchronous changes.