Add missing links for Error docs
This commit is contained in:
@@ -51,13 +51,16 @@ use convert::From;
|
|||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub type Result<T> = result::Result<T, Error>;
|
pub type Result<T> = result::Result<T, Error>;
|
||||||
|
|
||||||
/// The error type for I/O operations of the `Read`, `Write`, `Seek`, and
|
/// The error type for I/O operations of the [`Read`], [`Write`], [`Seek`], and
|
||||||
/// associated traits.
|
/// associated traits.
|
||||||
///
|
///
|
||||||
/// Errors mostly originate from the underlying OS, but custom instances of
|
/// Errors mostly originate from the underlying OS, but custom instances of
|
||||||
/// `Error` can be created with crafted error messages and a particular value of
|
/// `Error` can be created with crafted error messages and a particular value of
|
||||||
/// [`ErrorKind`].
|
/// [`ErrorKind`].
|
||||||
///
|
///
|
||||||
|
/// [`Read`]: ../io/trait.Read.html
|
||||||
|
/// [`Write`]: ../io/trait.Write.html
|
||||||
|
/// [`Seek`]: ../io/trait.Seek.html
|
||||||
/// [`ErrorKind`]: enum.ErrorKind.html
|
/// [`ErrorKind`]: enum.ErrorKind.html
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
|
|||||||
Reference in New Issue
Block a user