From 0aa7ab94ffd02f3fd9fed4f0ff91064993ec837f Mon Sep 17 00:00:00 2001 From: Yale Cason III Date: Thu, 11 Aug 2016 14:46:16 -0400 Subject: [PATCH] Listening vs Listenering Not trying to be pedantic, just noticed this. --- src/bin/echo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/echo.rs b/src/bin/echo.rs index c7826f2f4..a6fb1c324 100644 --- a/src/bin/echo.rs +++ b/src/bin/echo.rs @@ -23,7 +23,7 @@ fn main() { let done = server.and_then(move |socket| { // Once we've got the TCP listener, inform that we have it - println!("Listenering on: {}", addr); + println!("Listening on: {}", addr); // Pull out the stream of incoming connections and then for each new // one spin up a new task copying data. We put the `socket` into a