summaryrefslogtreecommitdiffstats
path: root/examples/echo.rs
diff options
context:
space:
mode:
authorJulian Tescher <jatescher@gmail.com>2018-05-08 14:44:17 -0400
committerCarl Lerche <me@carllerche.com>2018-05-08 11:44:17 -0700
commit06b2c402227b4c0f64912e48966f2751dd872ccc (patch)
tree736fceef44b46484e93559bb5e7d0a06e623b3bc /examples/echo.rs
parent68b82f5721cbfa2076f53fa24961ee9273395b39 (diff)
Fix typos (#348)
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 e4fe65cc..92d65a90 100644
--- a/examples/echo.rs
+++ b/examples/echo.rs
@@ -3,7 +3,7 @@
//! This server will create a TCP listener, accept connections in a loop, and
//! write back everything that's read off of each TCP connection.
//!
-//! Because the Tokio runtime uses a thread poool, each TCP connection is
+//! Because the Tokio runtime uses a thread pool, each TCP connection is
//! processed concurrently with all other TCP connections across multiple
//! threads.
//!