Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nit] Fix a comment typo. #116

Merged
merged 1 commit into from
Aug 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 Expand Up @@ -170,7 +170,7 @@
missing_docs,
rust_2018_idioms,
missing_debug_implementations,
broken_intra_doc_links

Check warning on line 173 in src/lib.rs

View workflow job for this annotation

GitHub Actions / miri

lint `broken_intra_doc_links` has been renamed to `rustdoc::broken_intra_doc_links`

Check warning on line 173 in src/lib.rs

View workflow job for this annotation

GitHub Actions / sanitizers

lint `broken_intra_doc_links` has been renamed to `rustdoc::broken_intra_doc_links`
)]
#![allow(clippy::type_complexity)]

Expand Down
Loading