diff --git a/src/lib.rs b/src/lib.rs index c7f0c18..6032d8d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -837,7 +837,7 @@ impl Runner<'_> { /// Waits for the next runnable task to run. async fn runnable(&self) -> Runnable { // Store the current thread that is running this runner. - // + // // Relaxed ordering is fine here since a SeqCst fence is issued before the value is // actually loaded. self.local.thread.store(thread_id(), Ordering::Relaxed);