summaryrefslogtreecommitdiffstats
path: root/tokio/src/runtime/thread_pool/shutdown.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/runtime/thread_pool/shutdown.rs')
-rw-r--r--tokio/src/runtime/thread_pool/shutdown.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/runtime/thread_pool/shutdown.rs b/tokio/src/runtime/thread_pool/shutdown.rs
index d9f5eb0f..414c1c84 100644
--- a/tokio/src/runtime/thread_pool/shutdown.rs
+++ b/tokio/src/runtime/thread_pool/shutdown.rs
@@ -25,7 +25,7 @@ pub(super) fn channel() -> (Sender, Receiver) {
}
impl Receiver {
- /// Block the current thread until all `Sender` handles drop.
+ /// Blocks the current thread until all `Sender` handles drop.
pub(crate) fn wait(&mut self) {
use crate::runtime::enter::{enter, try_enter};