From a99ebbcebf3a4e3a883dc0feaca2830d1cb3af87 Mon Sep 17 00:00:00 2001 From: geolffreym Date: Sat, 11 Jun 2022 09:47:54 -0600 Subject: [PATCH] docs: add check to README file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5450584..034f762 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ A curated collection of idiomatic design & application patterns for Go language. | [Condition Variable](/synchronization/condition_variable.md) | Provides a mechanism for threads to temporarily give up access in order to wait for some condition | ✘ | | [Lock/Mutex](/synchronization/mutex.md) | Enforces mutual exclusion limit on a resource to gain exclusive access | ✘ | | [Monitor](/synchronization/monitor.md) | Combination of mutex and condition variable patterns | ✘ | -| [Read-Write Lock](/synchronization/read_write_lock.md) | Allows parallel read access, but only exclusive access on write operations to a resource | ✘ | +| [Read-Write Lock](/synchronization/read_write_lock.md) | Allows parallel read access, but only exclusive access on write operations to a resource | ✔ | | [Semaphore](/synchronization/semaphore.md) | Allows controlling access to a common resource | ✔ | ## Concurrency Patterns