From d7dfcf458fec97f360f4fdf20391afabce4353a8 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Sun, 15 Sep 2024 01:16:40 +0900 Subject: [PATCH] Fix a comment --- rust_crate/src/shutdown.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust_crate/src/shutdown.rs b/rust_crate/src/shutdown.rs index 81a76ec9..89d03c2e 100644 --- a/rust_crate/src/shutdown.rs +++ b/rust_crate/src/shutdown.rs @@ -42,7 +42,7 @@ impl Event { } /// Sets the flag to `true` and notifies all waiting threads. - /// This will wake up any threads waiting on the condition variable. + /// This will wake up any threads or async tasks. pub fn set(&self) { let mut inner = match self.inner.lock() { Ok(inner) => inner,