From 3e5a0a7df6eff94a1d6fee60fad5813f6bb42e64 Mon Sep 17 00:00:00 2001 From: surechen Date: Thu, 4 Feb 2021 19:30:31 +0800 Subject: [PATCH] runtime: fix a spelling mistake (#3503) --- tokio/src/runtime/basic_scheduler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/basic_scheduler.rs b/tokio/src/runtime/basic_scheduler.rs index 860eab408a9..aeb01504c19 100644 --- a/tokio/src/runtime/basic_scheduler.rs +++ b/tokio/src/runtime/basic_scheduler.rs @@ -129,7 +129,7 @@ impl BasicScheduler

{ pin!(future); // Attempt to steal the dedicated parker and block_on the future if we can there, - // othwerwise, lets select on a notification that the parker is available + // otherwise, lets select on a notification that the parker is available // or the future is complete. loop { if let Some(inner) = &mut self.take_inner() {