From 2d9bea8d63229c108f25049c4815538ada25697a Mon Sep 17 00:00:00 2001 From: Danilo Martins <62563461+capcah@users.noreply.github.com> Date: Sun, 27 Dec 2020 16:17:00 +0100 Subject: [PATCH] runtime: fix typo (#3354) Co-authored-by: Danilo --- tokio/src/runtime/thread_pool/worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/thread_pool/worker.rs b/tokio/src/runtime/thread_pool/worker.rs index 31712e441..dbd1aff6d 100644 --- a/tokio/src/runtime/thread_pool/worker.rs +++ b/tokio/src/runtime/thread_pool/worker.rs @@ -337,7 +337,7 @@ impl Context { } fn run_task(&self, task: Notified, mut core: Box) -> RunResult { - // Make sure thew orker is not in the **searching** state. This enables + // Make sure the worker is not in the **searching** state. This enables // another idle worker to try to steal work. core.transition_from_searching(&self.worker);