fix tiny typo in server.rs (#103)

Co-authored-by: Sho Mitarai <shomitarai@mitaraiakiranoMacBook-Pro.local>
This commit is contained in:
shomitarai
2022-06-22 15:27:35 +09:00
committed by GitHub
parent 8ecc7bcbda
commit 8c714114f2

View File

@@ -155,7 +155,7 @@ pub async fn run(listener: TcpListener, shutdown: impl Future) {
// op completes, its associated `<step to perform with result>` is // op completes, its associated `<step to perform with result>` is
// performed. // 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: // asynchronous Rust. See the API docs for more details:
// //
// https://docs.rs/tokio/*/tokio/macro.select.html // https://docs.rs/tokio/*/tokio/macro.select.html