From a9b333c490d53b88a9769640696f676ddb8c2265 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 8 Jul 2020 22:24:24 -0400 Subject: [PATCH] Fix grammar --- docs/api/cyclone/concurrent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/cyclone/concurrent.md b/docs/api/cyclone/concurrent.md index 51632237..c9488f40 100644 --- a/docs/api/cyclone/concurrent.md +++ b/docs/api/cyclone/concurrent.md @@ -73,7 +73,7 @@ Note that concurrency primitives must still be used to safely coordinate access The following types of objects are always shared: -- Concurrency primitives (mutex, conditional variable, atom). These object are allocated directly on the heap since by definition multiple threads need to use them for synchronization. +- Concurrency primitives (mutex, conditional variable, atom). These objects are allocated directly on the heap since by definition multiple threads need to use them for synchronization. - Fixnum integers and characters. These are immediates (IE, value types) so there is no object in memory to reference.