Skip to content

Commit

Permalink
[nit] Fix a comment typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsugriy committed Aug 21, 2023
1 parent a6091e3 commit 6dc68a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! 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 parallel
//! and one that is 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.
//!
Expand Down

0 comments on commit 6dc68a9

Please sign in to comment.