From 8adb7c000af40d33bd470f10d275e583ca33c2b6 Mon Sep 17 00:00:00 2001 From: Richard Petrie Date: Sat, 23 Sep 2017 22:29:24 -0500 Subject: [PATCH] Fixed a typo --- examples/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server.rs b/examples/server.rs index 299b472..52005d1 100644 --- a/examples/server.rs +++ b/examples/server.rs @@ -53,7 +53,7 @@ fn main() { let srv = socket.incoming().for_each(|(stream, addr)| { // We have to clone both of these values, because the `and_then` - // function billow constructs a new future, `and_then` requires + // function below constructs a new future, `and_then` requires // `FnOnce`, so we construct a move closure to move the // environment inside the future (AndThen future may overlive our // `for_each` future).