diff --git a/src/io/timeout.rs b/src/io/timeout.rs index 5902989..a989b2d 100644 --- a/src/io/timeout.rs +++ b/src/io/timeout.rs @@ -61,7 +61,7 @@ where Poll::Pending => match self.delay().poll(cx) { Poll::Ready(_) => Poll::Ready(Err(io::Error::new( io::ErrorKind::TimedOut, - "future has timed out", + "IO operation has timed out", ))), Poll::Pending => Poll::Pending, },