From 98fc3df60ecd278ed8c3378739df1001bfa08ca2 Mon Sep 17 00:00:00 2001 From: Taras Tsugrii Date: Fri, 25 Aug 2023 11:32:04 -0700 Subject: [PATCH] [nit] Fix a readme typo. (#115) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37113d5..31dbac8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Left-right is a concurrency primitive for high concurrency reads over a single-writer data structure. The primitive keeps two copies of the backing data structure, one that is accessed by readers, and one that is -access by the (single) writer. This enables all reads to proceed in +accessed by the (single) writer. This enables all reads to proceed in parallel with minimal coordination, and shifts the coordination overhead to the writer. In the absence of writes, reads scale linearly with the number of cores.