From b7695d9313df15b6523252c31d4e440b1ebe0225 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 2 May 2020 11:50:29 +0800 Subject: [PATCH] typo --- src/runtime/src/comms.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/src/comms.rs b/src/runtime/src/comms.rs index da0c19bb..4d56f905 100644 --- a/src/runtime/src/comms.rs +++ b/src/runtime/src/comms.rs @@ -112,7 +112,7 @@ async fn handle_connection(stream: &TcpStream, control: Rc return Err(Error::UnexpectedPattern), // Peer has closed the connection. - // Closing here is a normal condition so do not reported an error. + // Closing here is a normal condition so do not report an error. // An error is still reported if the connection is unexpectedly closed elsewhere. Err(smoltcp::Error::Illegal) => return Ok(()),