summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJason Davies <jason@jasondavies.com>2018-05-14 19:10:25 +0100
committerCarl Lerche <me@carllerche.com>2018-05-14 11:10:25 -0700
commit1f5bb121e29997bf404beab5f6485baff878a700 (patch)
tree24a6a69228abed163b432d33720a6928d1f173bd /examples
parent88801bb6132f3f9d624a6bbbc8bd5c9517fbc936 (diff)
Fix typo in doc comment. (#361)
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".