Minor spelling error in connection.rs comments (#145)

Signed-off-by: David Capino <david.capino@gmail.com>
This commit is contained in:
khappucino 2018-11-29 20:02:03 -08:00 committed by Sean McArthur
parent 52a2bf5a3e
commit 87fb677cdf
1 changed files with 1 additions and 1 deletions

View File

@ -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())