From 0f07bd25b36c0edccb5a1d4923f47f548355dd17 Mon Sep 17 00:00:00 2001 From: sergerad Date: Wed, 4 Sep 2024 16:21:30 +1200 Subject: [PATCH] Fix comment mistake from sed --- core/src/utils/sync/racy_lock.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/utils/sync/racy_lock.rs b/core/src/utils/sync/racy_lock.rs index 77f7defd4..3a61e93b4 100644 --- a/core/src/utils/sync/racy_lock.rs +++ b/core/src/utils/sync/racy_lock.rs @@ -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