Update docs of futures-mio

This commit is contained in:
Alex Crichton
2016-08-18 10:29:11 -07:00
parent 12a05b9568
commit 0a707ffccb
5 changed files with 103 additions and 16 deletions
-2
View File
@@ -54,8 +54,6 @@ impl Future for Timeout {
if *self.token.when() <= now {
Poll::Ok(())
} else {
trace!("waiting for a timeout at {:?}", self.token.when());
trace!("current time is {:?}", now);
self.handle.update_timeout(&self.token);
Poll::NotReady
}