From 0716da555f5da1d0039167c567853ac5b7cbb1a6 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Thu, 25 Jun 2015 23:29:09 +1000 Subject: [PATCH] relnotes: Fix error index link. --- RELEASES.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 9932684a34c..203da02c373 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -13,10 +13,9 @@ Highlights * A `symlink_metadata` function has been added. * The `fs::Metadata` structure now lowers to its OS counterpart, providing access to all underlying information. -* The compiler contains extended explanations of many errors. When it - emits such an error it also suggests using the `--explain` flag to - read the extended explanations, which are also [cataloged on the web - site][err]. +* The compiler now contains extended explanations of many errors. When an error + with an explanation occurs the compiler suggests using the `--explain` flag + to read the explanation. Error explanations are also [available online][err-index]. * Thanks to multiple [improvements][sk] to [type checking][pre], as well as other work, the time to bootstrap the compiler decreased by 32%. @@ -88,7 +87,7 @@ Misc [`IntoIterator`]: http://doc.rust-lang.org/nightly/std/iter/trait.IntoIterator.html [`From`]: http://doc.rust-lang.org/nightly/std/convert/trait.From.html [rf]: https://github.com/rust-lang/rust/pull/24491 -[err]: http://doc.rust-lang.org/error-index.html +[err-index]: http://doc.rust-lang.org/error-index.html [sk]: https://github.com/rust-lang/rust/pull/24615 [pre]: https://github.com/rust-lang/rust/pull/25323 [file]: https://github.com/rust-lang/rust/pull/24598