Rollup merge of #44703 - GuillaumeGomez:missing-io-links, r=QuietMisdreavus

Add some missing links in io docs

r? @rust-lang/docs
This commit is contained in:
Guillaume Gomez 2017-09-19 21:50:25 +02:00 committed by GitHub
commit bfed2dcb2f

View File

@ -69,16 +69,18 @@ pub fn copy<R: ?Sized, W: ?Sized>(reader: &mut R, writer: &mut W) -> io::Result<
/// A reader which is always at EOF. /// A reader which is always at EOF.
/// ///
/// This struct is generally created by calling [`empty`][empty]. Please see /// This struct is generally created by calling [`empty`]. Please see
/// the documentation of `empty()` for more details. /// the documentation of [`empty()`][`empty`] for more details.
/// ///
/// [empty]: fn.empty.html /// [`empty`]: fn.empty.html
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub struct Empty { _priv: () } pub struct Empty { _priv: () }
/// Constructs a new handle to an empty reader. /// Constructs a new handle to an empty reader.
/// ///
/// All reads from the returned reader will return `Ok(0)`. /// All reads from the returned reader will return [`Ok`]`(0)`.
///
/// [`Ok`]: ../result/enum.Result.html#variant.Ok
/// ///
/// # Examples /// # Examples
/// ///