From 6da81471f959e59de0af0d0a3829112eeaf76e01 Mon Sep 17 00:00:00 2001 From: Loong Dai Date: Wed, 23 Nov 2022 17:59:44 +0800 Subject: [PATCH] signal: fix a typo (#5224) --- tokio/src/runtime/signal/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/signal/mod.rs b/tokio/src/runtime/signal/mod.rs index dba30ba20..24f2f4c6c 100644 --- a/tokio/src/runtime/signal/mod.rs +++ b/tokio/src/runtime/signal/mod.rs @@ -103,7 +103,7 @@ impl Driver { } fn process(&mut self) { - // If the signal pipe has not recieved a readiness event, then there is + // If the signal pipe has not received a readiness event, then there is // nothing else to do. if !self.io.consume_signal_ready() { return;