From 79bfd92154cd89feb640d6336ea70c3d80a9073f Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Thu, 15 Aug 2019 02:55:37 +0200 Subject: [PATCH] Update src/io/timeout.rs Co-Authored-By: Florian Gilcher --- src/io/timeout.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/timeout.rs b/src/io/timeout.rs index 5902989e..a989b2df 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, },