From f73ed1fdbaa0febd1f89b64603cd171865b26afc Mon Sep 17 00:00:00 2001 From: Shin Seunghun <36041278+seunghunee@users.noreply.github.com> Date: Tue, 7 Dec 2021 19:07:00 +0900 Subject: [PATCH] runtime: fix typo (#4303) --- tokio/src/runtime/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/mod.rs b/tokio/src/runtime/mod.rs index a4fa8924208..847dd5972e1 100644 --- a/tokio/src/runtime/mod.rs +++ b/tokio/src/runtime/mod.rs @@ -582,7 +582,7 @@ cfg_rt! { match self::context::try_enter(self.handle.clone()) { Some(guard) => basic.set_context_guard(guard), None => { - // The context thread-local has alread been destroyed. + // The context thread-local has already been destroyed. // // We don't set the guard in this case. Calls to tokio::spawn in task // destructors would fail regardless if this happens.