summaryrefslogtreecommitdiffstats
path: root/examples/echo.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-09-10 08:54:35 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-09-10 08:54:35 -0700
commit7b94cf307d6562a8f31c5d764122e39cda080842 (patch)
treed9070a82f3d25b6a7a402fcdaf09083ba1922d6d /examples/echo.rs
parent645ae7051d08221cbd44ad1211eac8af2f0b6c67 (diff)
Add a multithreaded echo server example
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 80e73ea7..2bf8f391 100644
--- a/examples/echo.rs
+++ b/examples/echo.rs
@@ -1,4 +1,4 @@
-//! An "hello world" echo server with tokio-core
+//! A "hello world" echo server with tokio-core
//!
//! This server will create a TCP listener, accept connections in a loop, and
//! simply write back everything that's read off of each TCP connection. Each