Skip to content

Commit 6b726a1

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

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
@@ -8883,13 +8883,13 @@ Misc
88838883
* The compiler gained many new extended error descriptions, which can
88848884
be accessed with the `--explain` flag.
88858885
* The `dropck` pass, which checks that destructors can't access
8886-
destroyed values, [has been rewritten][dropck]. This fixes some
8886+
destroyed values, [has been rewritten][27261]. This fixes some
88878887
soundness holes, and as such will cause some previously-compiling
88888888
code to no longer build.
88898889
* `rustc` now uses [LLVM to write archive files where possible][ar].
88908890
Eventually this will eliminate the compiler's dependency on the ar
88918891
utility.
8892-
* Rust has [preliminary support for i686 FreeBSD][fb] (it has long
8892+
* Rust has [preliminary support for i686 FreeBSD][26959] (it has long
88938893
supported FreeBSD on x86_64).
88948894
* The [`unused_mut`][lum], [`unconditional_recursion`][lur],
88958895
[`improper_ctypes`][lic], and [`negate_unsigned`][lnu] lints are
@@ -8928,15 +8928,15 @@ Misc
89288928
[ar]: https://github.com/rust-lang/rust/pull/26926
89298929
[b14]: https://static.rust-lang.org/dist/rust-beta-x86_64-pc-windows-msvc.msi
89308930
[dms]: https://github.com/rust-lang/rust/pull/26241
8931-
[dropck]: https://github.com/rust-lang/rust/pull/27261
8931+
[27261]: https://github.com/rust-lang/rust/pull/27261
89328932
[dropckrfc]: https://github.com/rust-lang/rfcs/blob/master/text/0769-sound-generic-drop.md
89338933
[ds]: https://github.com/rust-lang/rust/pull/26818
89348934
[dst1]: http://doc.rust-lang.org/nightly/std/mem/fn.size_of_val.html
89358935
[dst2]: http://doc.rust-lang.org/nightly/std/mem/fn.align_of_val.html
89368936
[dst3]: https://github.com/rust-lang/rust/pull/27351
89378937
[e]: https://github.com/rust-lang/rust/pull/24793
89388938
[f]: https://github.com/rust-lang/rust/pull/26588
8939-
[fb]: https://github.com/rust-lang/rust/pull/26959
8939+
[26959]: https://github.com/rust-lang/rust/pull/26959
89408940
[fl]: https://github.com/rust-lang/rust-installer/pull/41
89418941
[ie]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html
89428942
[iec]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.cause
@@ -9208,7 +9208,7 @@ Misc
92089208
to rustc.
92099209
* [Android executables are always position independent][pie].
92109210
* [The `drop_with_repr_extern` lint warns about mixing `repr(C)`
9211-
with `Drop`][drop].
9211+
with `Drop`][24935].
92129212

92139213
[`str::split_whitespace`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_whitespace
92149214
[`FromRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.FromRawFd.html
@@ -9238,7 +9238,7 @@ Misc
92389238
[`BinaryHeap`]: https://doc.rust-lang.org/nightly/std/collections/struct.BinaryHeap.html
92399239
[ll]: https://github.com/rust-lang/rust/pull/26022
92409240
[`split_off`]: https://doc.rust-lang.org/nightly/collections/linked_list/struct.LinkedList.html#method.split_off
9241-
[drop]: https://github.com/rust-lang/rust/pull/24935
9241+
[24935]: https://github.com/rust-lang/rust/pull/24935
92429242

92439243
Version 1.0.0 (2015-05-15)
92449244
========================
@@ -9291,15 +9291,15 @@ Language
92919291
property: generic code cannot behave differently for different type
92929292
arguments except in minor ways.
92939293
* The `unsafe_destructor` feature is now deprecated in favor of the
9294-
[new `dropck`][dropck]. This change is a major reduction in unsafe
9294+
[new `dropck`][rfc769]. This change is a major reduction in unsafe
92959295
code.
92969296

92979297
Libraries
92989298
---------
92999299

93009300
* The `thread_local` module [has been renamed to `std::thread`][th].
93019301
* The methods of `IteratorExt` [have been moved to the `Iterator`
9302-
trait itself][ie].
9302+
trait itself][23300].
93039303
* Several traits that implement Rust's conventions for type
93049304
conversions, `AsMut`, `AsRef`, `From`, and `Into` have been
93059305
[centralized in the `std::convert` module][con].
@@ -9318,7 +9318,7 @@ Libraries
93189318
* [In method resolution, object methods are resolved before inherent
93199319
methods][meth].
93209320
* [`String::from_str` has been deprecated in favor of the `From` impl,
9321-
`String::from`][sf].
9321+
`String::from`][24517].
93229322
* [`io::Error` implements `Sync`][ios].
93239323
* [The `words` method on `&str` has been replaced with
93249324
`split_whitespace`][sw], to avoid answering the tricky question, 'what is
@@ -9366,15 +9366,15 @@ Misc
93669366
[con]: https://github.com/rust-lang/rust/pull/23875
93679367
[cr]: https://github.com/rust-lang/rust/pull/23419
93689368
[fe]: https://github.com/rust-lang/rust/pull/23879
9369-
[ie]: https://github.com/rust-lang/rust/pull/23300
9369+
[23300]: https://github.com/rust-lang/rust/pull/23300
93709370
[inv]: https://github.com/rust-lang/rust/pull/23938
93719371
[ios]: https://github.com/rust-lang/rust/pull/24133
93729372
[lex]: https://github.com/rust-lang/rfcs/blob/master/text/0879-small-base-lexing.md
93739373
[lt]: https://github.com/rust-lang/rust/pull/24057
93749374
[meth]: https://github.com/rust-lang/rust/pull/24056
93759375
[pat]: https://github.com/rust-lang/rfcs/blob/master/text/0528-string-patterns.md
93769376
[po]: https://github.com/rust-lang/rust/pull/24270
9377-
[sf]: https://github.com/rust-lang/rust/pull/24517
9377+
[24517]: https://github.com/rust-lang/rust/pull/24517
93789378
[slp]: https://github.com/rust-lang/rust/pull/23949
93799379
[spl]: https://github.com/rust-lang/rfcs/blob/master/text/0979-align-splitn-with-other-languages.md
93809380
[sw]: https://github.com/rust-lang/rfcs/blob/master/text/1054-str-words.md
@@ -9392,7 +9392,7 @@ Misc
93929392
[conversion]: https://github.com/rust-lang/rfcs/pull/529
93939393
[num-traits]: https://github.com/rust-lang/rust/pull/23549
93949394
[index-value]: https://github.com/rust-lang/rust/pull/23601
9395-
[dropck]: https://github.com/rust-lang/rfcs/pull/769
9395+
[rfc769]: https://github.com/rust-lang/rfcs/pull/769
93969396
[ci-compare]: https://gist.github.com/brson/a30a77836fbec057cbee
93979397
[fn-inherit]: https://github.com/rust-lang/rust/pull/23282
93989398
[fn-blanket]: https://github.com/rust-lang/rust/pull/23895

0 commit comments

Comments
 (0)