diff --git a/src/poll.rs b/src/poll.rs index 603ff4d40..289d6686c 100644 --- a/src/poll.rs +++ b/src/poll.rs @@ -349,6 +349,10 @@ impl Poll { /// of Mio would automatically retry the poll call if it was interrupted /// (if `EINTR` was returned). /// + /// Currently if the `timeout` elapses without any readiness events + /// triggering this will return `Ok(())`. However we're not guaranteeing + /// this behaviour as this depends on the OS. + /// /// # Examples /// /// A basic example -- establishing a `TcpStream` connection.