diff --git a/tokio/src/io/async_write.rs b/tokio/src/io/async_write.rs index 0bfed056e..014636395 100644 --- a/tokio/src/io/async_write.rs +++ b/tokio/src/io/async_write.rs @@ -51,7 +51,7 @@ pub trait AsyncWrite { /// If the object is not ready for writing, the method returns /// `Poll::Pending` and arranges for the current task (via /// `cx.waker()`) to receive a notification when the object becomes - /// readable or is closed. + /// writable or is closed. fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>,