From 44525196892d5ffb3bae70fa471de62c93cb293e Mon Sep 17 00:00:00 2001 From: chris <82700108+DerFnoeh@users.noreply.github.com> Date: Mon, 27 May 2024 18:17:07 +0200 Subject: [PATCH] Fix typo in serve-with-hyper example (#2750) --- examples/serve-with-hyper/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/serve-with-hyper/src/main.rs b/examples/serve-with-hyper/src/main.rs index 8aaab9b0..8bad2acd 100644 --- a/examples/serve-with-hyper/src/main.rs +++ b/examples/serve-with-hyper/src/main.rs @@ -43,7 +43,7 @@ async fn serve_plain() { // We don't need to call `poll_ready` because `Router` is always ready. let tower_service = app.clone(); - // Spawn a task to handle the connection. That way we can multiple connections + // Spawn a task to handle the connection. That way we can handle multiple connections // concurrently. tokio::spawn(async move { // Hyper has its own `AsyncRead` and `AsyncWrite` traits and doesn't use tokio.