about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-10-14 09:53:41 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-10-14 12:50:58 +0530
commitb330df2c6cf8661ce7079fb468daf6405065f6ea (patch)
tree2de093efd56ea4542d83942cdf34b8117d699363 /src/libstd
parent36a597c7b020364f185980f0645189ad7e8e3d79 (diff)
parentfda2f733c5ef86f7bfca4e0d61c989fea4b69fd7 (diff)
downloadrust-b330df2c6cf8661ce7079fb468daf6405065f6ea.tar.gz
rust-b330df2c6cf8661ce7079fb468daf6405065f6ea.zip
Rollup merge of #29035 - rutsky:patch-6, r=steveklabnik
r? @steveklabnik

The link is broken here: <https://doc.rust-lang.org/std/io/#types>.

Looks like crate documentation generator uses only first paragraph of the module documentation and
so doesn't resolve the link defined below.

Probably this behaviour of the documentation generator should be considered as a bug and should be reported.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/error.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstd/io/error.rs b/src/libstd/io/error.rs
index 773f9ac6a12..121eeae9e48 100644
--- a/src/libstd/io/error.rs
+++ b/src/libstd/io/error.rs
@@ -17,9 +17,8 @@ use option::Option::{self, Some, None};
 use result;
 use sys;
 
-/// A specialized [`Result`][result] type for I/O operations.
-///
-/// [result]: ../result/enum.Result.html
+/// A specialized [`Result`](../result/enum.Result.html) type for I/O 
+/// operations.
 ///
 /// This type is broadly used across `std::io` for any operation which may
 /// produce an error.