We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98fc3df commit a0b2186Copy full SHA for a0b2186
src/lib.rs
@@ -1,7 +1,7 @@
1
//! A concurrency primitive for high concurrency reads over a single-writer data structure.
2
//!
3
//! The primitive keeps two copies of the backing data structure, one that is accessed by readers,
4
-//! and one that is access by the (single) writer. This enables all reads to proceed in parallel
+//! and one that is accessed by the (single) writer. This enables all reads to proceed in parallel
5
//! with minimal coordination, and shifts the coordination overhead to the writer. In the absence
6
//! of writes, reads scale linearly with the number of cores.
7
0 commit comments