From ef0970a769442b803cf220e1312521905217caac Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 27 Jun 2019 13:38:53 -0400 Subject: [PATCH] Update concurrent.md --- docs/api/cyclone/concurrent.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/cyclone/concurrent.md b/docs/api/cyclone/concurrent.md index f6273ca9..ddb68b29 100644 --- a/docs/api/cyclone/concurrent.md +++ b/docs/api/cyclone/concurrent.md @@ -51,9 +51,9 @@ All other objects must be explicitly shared before they can be safely used by mu (make-shared obj) -Return a reference to an object that can be safely shared by many threads. +Return an object that can be safely shared by many threads. -If the given object is atomic or already shared it it simply returned. Otherwise it is necessary to create a copy of the object. +If the given object is already shared it it simply returned. Otherwise it is necessary to create a copy of the object. Note this function may trigger a minor GC if a thread-local pair or vector is passed.