From 87fb677cdf5e1598b89b24c3f2adb6ccb6e1f01a Mon Sep 17 00:00:00 2001 From: khappucino Date: Thu, 29 Nov 2018 20:02:03 -0800 Subject: [PATCH] Minor spelling error in connection.rs comments (#145) Signed-off-by: David Capino --- src/transport/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transport/connection.rs b/src/transport/connection.rs index b154500b8..3155c0ac5 100644 --- a/src/transport/connection.rs +++ b/src/transport/connection.rs @@ -181,7 +181,7 @@ impl BoundPort { future::lazy(move || { // Create the TCP listener lazily, so that it's not bound to a // reactor until the future is run. This will avoid - // `Handle::current()` creating a mew thread for the global + // `Handle::current()` creating a new thread for the global // background reactor if `listen_and_fold` is called before we've // initialized the runtime. TcpListener::from_std(inner, &Handle::current())