summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-03-07 09:08:17 -0600
committerGitHub <noreply@github.com>2017-03-07 09:08:17 -0600
commit8fecf98aef1bb2f4f37303c44b2a51126b9c54ff (patch)
treef068248053e394825987407e8832788bbd4d0a60
parentb0d04e04f2ebddc596d38ae62e29e576107a6d08 (diff)
parenta67e0d3efb93cb2bcf619417bdccdf8e89532614 (diff)
Merge pull request #187 from king6cong/master
comment rewording
-rw-r--r--examples/echo-udp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echo-udp.rs b/examples/echo-udp.rs
index 23bfbccf..1dd65ef7 100644
--- a/examples/echo-udp.rs
+++ b/examples/echo-udp.rs
@@ -35,7 +35,7 @@ impl Future for Server {
loop {
// First we check to see if there's a message we need to echo back.
// If so then we try to send it back to the original source, waiting
- // until we're writable and able to do so.
+ // until it's writable and we're able to do so.
if let Some((size, peer)) = self.to_send {
let amt = try_nb!(self.socket.send_to(&self.buf[..size], &peer));
println!("Echoed {}/{} bytes to {}", amt, size, peer);