From 8c714114f23d0ab01e27d350e252a7044443bf6d Mon Sep 17 00:00:00 2001 From: shomitarai Date: Wed, 22 Jun 2022 15:27:35 +0900 Subject: [PATCH] fix tiny typo in server.rs (#103) Co-authored-by: Sho Mitarai --- src/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.rs b/src/server.rs index de94456..2868b26 100644 --- a/src/server.rs +++ b/src/server.rs @@ -155,7 +155,7 @@ pub async fn run(listener: TcpListener, shutdown: impl Future) { // op completes, its associated `` is // performed. // - // The `select! macro is a foundational building block for writing + // The `select!` macro is a foundational building block for writing // asynchronous Rust. See the API docs for more details: // // https://docs.rs/tokio/*/tokio/macro.select.html