Skip to content

Commit 972d67c

Browse files
Add missing links for Error docs
1 parent 592bdc3 commit 972d67c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/libstd/io/error.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,16 @@ use convert::From;
5151
#[stable(feature = "rust1", since = "1.0.0")]
5252
pub type Result<T> = result::Result<T, Error>;
5353

54-
/// The error type for I/O operations of the `Read`, `Write`, `Seek`, and
54+
/// The error type for I/O operations of the [`Read`], [`Write`], [`Seek`], and
5555
/// associated traits.
5656
///
5757
/// Errors mostly originate from the underlying OS, but custom instances of
5858
/// `Error` can be created with crafted error messages and a particular value of
5959
/// [`ErrorKind`].
6060
///
61+
/// [`Read`]: ../io/trait.Read.html
62+
/// [`Write`]: ../io/trait.Write.html
63+
/// [`Seek`]: ../io/trait.Seek.html
6164
/// [`ErrorKind`]: enum.ErrorKind.html
6265
#[derive(Debug)]
6366
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)