about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-08-10 23:14:49 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2017-08-10 23:14:49 +0200
commit972d67cec1fc0aeafebcc60ffcdf4dea0eadff8c (patch)
treecf5cf60c3137a0d1219773931516038760b41a6b /src
parent592bdc3974005a82ec2701a9ef10f49f3bbd0ef7 (diff)
downloadrust-972d67cec1fc0aeafebcc60ffcdf4dea0eadff8c.tar.gz
rust-972d67cec1fc0aeafebcc60ffcdf4dea0eadff8c.zip
Add missing links for Error docs
Diffstat (limited to 'src')
-rw-r--r--src/libstd/io/error.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/io/error.rs b/src/libstd/io/error.rs
index 12716b9b502..68f55221a6c 100644
--- a/src/libstd/io/error.rs
+++ b/src/libstd/io/error.rs
@@ -51,13 +51,16 @@ use convert::From;
 #[stable(feature = "rust1", since = "1.0.0")]
 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.
 ///
 /// Errors mostly originate from the underlying OS, but custom instances of
 /// `Error` can be created with crafted error messages and a particular value of
 /// [`ErrorKind`].
 ///
+/// [`Read`]: ../io/trait.Read.html
+/// [`Write`]: ../io/trait.Write.html
+/// [`Seek`]: ../io/trait.Seek.html
 /// [`ErrorKind`]: enum.ErrorKind.html
 #[derive(Debug)]
 #[stable(feature = "rust1", since = "1.0.0")]