summaryrefslogtreecommitdiffstats
path: root/examples/echo.rs
diff options
context:
space:
mode:
authorHolger Rapp <HolgerRapp@gmx.net>2017-01-04 16:49:33 +0100
committerGitHub <noreply@github.com>2017-01-04 16:49:33 +0100
commit58913c80a3ba4f48565793b6a3165ff2aaa2343f (patch)
tree76e8f9b6dfa177c7900bd61bf73e8da3d9804a19 /examples/echo.rs
parent717e99ca80ae57820f4dbe7574421afd28d9f1d9 (diff)
Fix typo.
Diffstat (limited to 'examples/echo.rs')
-rw-r--r--examples/echo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echo.rs b/examples/echo.rs
index 97e2a927..45ced33e 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.
//