diff options
| author | Vladimir Rutsky <rutsky@users.noreply.github.com> | 2015-10-14 02:17:31 +0300 |
|---|---|---|
| committer | Vladimir Rutsky <rutsky@users.noreply.github.com> | 2015-10-14 02:17:31 +0300 |
| commit | fda2f733c5ef86f7bfca4e0d61c989fea4b69fd7 (patch) | |
| tree | 3538f478caa097cf2e89094d9ac74031dcec900c /src/libstd | |
| parent | ec4362da562a4b591a7d120c6677e14ea713481a (diff) | |
| download | rust-fda2f733c5ef86f7bfca4e0d61c989fea4b69fd7.tar.gz rust-fda2f733c5ef86f7bfca4e0d61c989fea4b69fd7.zip | |
fix link on std::result::Result
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.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/error.rs | 5 |
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. |
