Skip to content

Commit

Permalink
skiplist: Fix typo (#1166)
Browse files Browse the repository at this point in the history
  • Loading branch information
dqkqd authored Jan 2, 2025
1 parent 7121fbd commit 17fb841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crossbeam-skiplist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
//!
//! What happens here? If the map implementation frees the memory
//! belonging to a value when it is
//! removed, then a user-after-free occurs, resulting in memory corruption.
//! removed, then a use-after-free occurs, resulting in memory corruption.
//!
//! To solve the above, this crate uses the _epoch-based memory reclamation_ mechanism
//! implemented in [`crossbeam-epoch`]. Simplified, a value removed from the map
Expand Down

0 comments on commit 17fb841

Please sign in to comment.