Skip to content

Commit

Permalink
Fix comment mistake from sed
Browse files Browse the repository at this point in the history
  • Loading branch information
sergerad committed Sep 4, 2024
1 parent 671501b commit 0f07bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/utils/sync/racy_lock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use core::{
};

/// Thread-safe, non-blocking, "first one wins" flavor of `once_cell::sync::OnceCell`
/// with the same interface as `std::sync::RacyLock`.
/// with the same interface as `std::sync::LazyLock`.
///
/// The underlying implementation is based on `once_cell::sync::race::OnceBox` which relies on
/// `core::atomic::AtomicPtr` to ensure that the data race results in a single successful
Expand Down

0 comments on commit 0f07bd2

Please sign in to comment.