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,