From 6d45f3261e670684bc1303abcf63af2a0c509515 Mon Sep 17 00:00:00 2001 From: jtnunley Date: Tue, 1 Nov 2022 19:06:16 -0700 Subject: [PATCH] fmt --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);