From 58913c80a3ba4f48565793b6a3165ff2aaa2343f Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Wed, 4 Jan 2017 16:49:33 +0100 Subject: [PATCH] Fix typo. --- examples/echo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/echo.rs b/examples/echo.rs index 97e2a9276..45ced33e6 100644 --- a/examples/echo.rs +++ b/examples/echo.rs @@ -102,7 +102,7 @@ fn main() { // And this is where much of the magic of this server happens. We // crucially want all clients to make progress concurrently, rather than - // blocking one on completion of another. To achieve this was use the + // blocking one on completion of another. To achieve this we use the // `spawn` function on `Handle` to essentially execute some work in the // background. //