diff --git a/src/io/write/mod.rs b/src/io/write/mod.rs index 64cae42..04cff74 100644 --- a/src/io/write/mod.rs +++ b/src/io/write/mod.rs @@ -127,6 +127,8 @@ pub trait Write { /// # /// # Ok(()) }) } /// ``` + /// + /// [`write`]: #tymethod.write fn write_all<'a>(&'a mut self, buf: &'a [u8]) -> ret!('a, WriteAllFuture, io::Result<()>) where Self: Unpin,