runtime: fix typo (#4303)

This commit is contained in:
Shin Seunghun
2021-12-07 11:07:00 +01:00
committed by GitHub
parent ee4b2ede83
commit f73ed1fdba
+1 -1
View File
@@ -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.