Update concurrent.md

This commit is contained in:
Justin Ethier 2019-06-27 13:39:56 -04:00 committed by GitHub
parent ef0970a769
commit 164974550a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.