From 4f2eadffcb494505f6d11cd4c63282f5f0a0bb48 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. --- futures-mio/src/bin/echo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures-mio/src/bin/echo.rs b/futures-mio/src/bin/echo.rs index c7826f2f41a..a6fb1c32467 100644 --- a/futures-mio/src/bin/echo.rs +++ b/futures-mio/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