Skip to content

Commit 8f840d9

Browse files
committed
Fix some links that had colliding reference names.
These reference names were very general, and used in other places.
1 parent 1e1660d commit 8f840d9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

RELEASES.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -8893,13 +8893,13 @@ Misc
88938893
* The compiler gained many new extended error descriptions, which can
88948894
be accessed with the `--explain` flag.
88958895
* The `dropck` pass, which checks that destructors can't access
8896-
destroyed values, [has been rewritten][dropck]. This fixes some
8896+
destroyed values, [has been rewritten][27261]. This fixes some
88978897
soundness holes, and as such will cause some previously-compiling
88988898
code to no longer build.
88998899
* `rustc` now uses [LLVM to write archive files where possible][ar].
89008900
Eventually this will eliminate the compiler's dependency on the ar
89018901
utility.
8902-
* Rust has [preliminary support for i686 FreeBSD][fb] (it has long
8902+
* Rust has [preliminary support for i686 FreeBSD][26959] (it has long
89038903
supported FreeBSD on x86_64).
89048904
* The [`unused_mut`][lum], [`unconditional_recursion`][lur],
89058905
[`improper_ctypes`][lic], and [`negate_unsigned`][lnu] lints are
@@ -8938,15 +8938,15 @@ Misc
89388938
[ar]: https://github.com/rust-lang/rust/pull/26926
89398939
[b14]: https://static.rust-lang.org/dist/rust-beta-x86_64-pc-windows-msvc.msi
89408940
[dms]: https://github.com/rust-lang/rust/pull/26241
8941-
[dropck]: https://github.com/rust-lang/rust/pull/27261
8941+
[27261]: https://github.com/rust-lang/rust/pull/27261
89428942
[dropckrfc]: https://github.com/rust-lang/rfcs/blob/master/text/0769-sound-generic-drop.md
89438943
[ds]: https://github.com/rust-lang/rust/pull/26818
89448944
[dst1]: http://doc.rust-lang.org/nightly/std/mem/fn.size_of_val.html
89458945
[dst2]: http://doc.rust-lang.org/nightly/std/mem/fn.align_of_val.html
89468946
[dst3]: https://github.com/rust-lang/rust/pull/27351
89478947
[e]: https://github.com/rust-lang/rust/pull/24793
89488948
[f]: https://github.com/rust-lang/rust/pull/26588
8949-
[fb]: https://github.com/rust-lang/rust/pull/26959
8949+
[26959]: https://github.com/rust-lang/rust/pull/26959
89508950
[fl]: https://github.com/rust-lang/rust-installer/pull/41
89518951
[ie]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html
89528952
[iec]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.cause
@@ -9218,7 +9218,7 @@ Misc
92189218
to rustc.
92199219
* [Android executables are always position independent][pie].
92209220
* [The `drop_with_repr_extern` lint warns about mixing `repr(C)`
9221-
with `Drop`][drop].
9221+
with `Drop`][24935].
92229222

92239223
[`str::split_whitespace`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_whitespace
92249224
[`FromRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.FromRawFd.html
@@ -9248,7 +9248,7 @@ Misc
92489248
[`BinaryHeap`]: https://doc.rust-lang.org/nightly/std/collections/struct.BinaryHeap.html
92499249
[ll]: https://github.com/rust-lang/rust/pull/26022
92509250
[`split_off`]: https://doc.rust-lang.org/nightly/collections/linked_list/struct.LinkedList.html#method.split_off
9251-
[drop]: https://github.com/rust-lang/rust/pull/24935
9251+
[24935]: https://github.com/rust-lang/rust/pull/24935
92529252

92539253
Version 1.0.0 (2015-05-15)
92549254
========================
@@ -9301,15 +9301,15 @@ Language
93019301
property: generic code cannot behave differently for different type
93029302
arguments except in minor ways.
93039303
* The `unsafe_destructor` feature is now deprecated in favor of the
9304-
[new `dropck`][dropck]. This change is a major reduction in unsafe
9304+
[new `dropck`][rfc769]. This change is a major reduction in unsafe
93059305
code.
93069306

93079307
Libraries
93089308
---------
93099309

93109310
* The `thread_local` module [has been renamed to `std::thread`][th].
93119311
* The methods of `IteratorExt` [have been moved to the `Iterator`
9312-
trait itself][ie].
9312+
trait itself][23300].
93139313
* Several traits that implement Rust's conventions for type
93149314
conversions, `AsMut`, `AsRef`, `From`, and `Into` have been
93159315
[centralized in the `std::convert` module][con].
@@ -9328,7 +9328,7 @@ Libraries
93289328
* [In method resolution, object methods are resolved before inherent
93299329
methods][meth].
93309330
* [`String::from_str` has been deprecated in favor of the `From` impl,
9331-
`String::from`][sf].
9331+
`String::from`][24517].
93329332
* [`io::Error` implements `Sync`][ios].
93339333
* [The `words` method on `&str` has been replaced with
93349334
`split_whitespace`][sw], to avoid answering the tricky question, 'what is
@@ -9376,15 +9376,15 @@ Misc
93769376
[con]: https://github.com/rust-lang/rust/pull/23875
93779377
[cr]: https://github.com/rust-lang/rust/pull/23419
93789378
[fe]: https://github.com/rust-lang/rust/pull/23879
9379-
[ie]: https://github.com/rust-lang/rust/pull/23300
9379+
[23300]: https://github.com/rust-lang/rust/pull/23300
93809380
[inv]: https://github.com/rust-lang/rust/pull/23938
93819381
[ios]: https://github.com/rust-lang/rust/pull/24133
93829382
[lex]: https://github.com/rust-lang/rfcs/blob/master/text/0879-small-base-lexing.md
93839383
[lt]: https://github.com/rust-lang/rust/pull/24057
93849384
[meth]: https://github.com/rust-lang/rust/pull/24056
93859385
[pat]: https://github.com/rust-lang/rfcs/blob/master/text/0528-string-patterns.md
93869386
[po]: https://github.com/rust-lang/rust/pull/24270
9387-
[sf]: https://github.com/rust-lang/rust/pull/24517
9387+
[24517]: https://github.com/rust-lang/rust/pull/24517
93889388
[slp]: https://github.com/rust-lang/rust/pull/23949
93899389
[spl]: https://github.com/rust-lang/rfcs/blob/master/text/0979-align-splitn-with-other-languages.md
93909390
[sw]: https://github.com/rust-lang/rfcs/blob/master/text/1054-str-words.md
@@ -9402,7 +9402,7 @@ Misc
94029402
[conversion]: https://github.com/rust-lang/rfcs/pull/529
94039403
[num-traits]: https://github.com/rust-lang/rust/pull/23549
94049404
[index-value]: https://github.com/rust-lang/rust/pull/23601
9405-
[dropck]: https://github.com/rust-lang/rfcs/pull/769
9405+
[rfc769]: https://github.com/rust-lang/rfcs/pull/769
94069406
[ci-compare]: https://gist.github.com/brson/a30a77836fbec057cbee
94079407
[fn-inherit]: https://github.com/rust-lang/rust/pull/23282
94089408
[fn-blanket]: https://github.com/rust-lang/rust/pull/23895

0 commit comments

Comments
 (0)