Skip to content

Commit a0b2186

Browse files
authored
[nit] Fix a comment typo. (#116)
1 parent 98fc3df commit a0b2186

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! A concurrency primitive for high concurrency reads over a single-writer data structure.
22
//!
33
//! 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
4+
//! and one that is accessed by the (single) writer. This enables all reads to proceed in parallel
55
//! with minimal coordination, and shifts the coordination overhead to the writer. In the absence
66
//! of writes, reads scale linearly with the number of cores.
77
//!

0 commit comments

Comments
 (0)