summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/chat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/chat.rs b/examples/chat.rs
index 36a0041b..8c347f40 100644
--- a/examples/chat.rs
+++ b/examples/chat.rs
@@ -4,7 +4,7 @@
//! illustrate more concepts.
//!
//! A chat server for telnet clients. After a telnet client connects, the first
-//! line should contain the client's name. After that, all lines send by a
+//! line should contain the client's name. After that, all lines sent by a
//! client are broadcasted to all other connected clients.
//!
//! Because the client is telnet, lines are delimited by "\r\n".