@@ -8883,13 +8883,13 @@ Misc
8883
8883
* The compiler gained many new extended error descriptions, which can
8884
8884
be accessed with the `--explain` flag.
8885
8885
* 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
8887
8887
soundness holes, and as such will cause some previously-compiling
8888
8888
code to no longer build.
8889
8889
* `rustc` now uses [LLVM to write archive files where possible][ar].
8890
8890
Eventually this will eliminate the compiler's dependency on the ar
8891
8891
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
8893
8893
supported FreeBSD on x86_64).
8894
8894
* The [`unused_mut`][lum], [`unconditional_recursion`][lur],
8895
8895
[`improper_ctypes`][lic], and [`negate_unsigned`][lnu] lints are
@@ -8928,15 +8928,15 @@ Misc
8928
8928
[ar]: https://github.com/rust-lang/rust/pull/26926
8929
8929
[b14]: https://static.rust-lang.org/dist/rust-beta-x86_64-pc-windows-msvc.msi
8930
8930
[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
8932
8932
[dropckrfc]: https://github.com/rust-lang/rfcs/blob/master/text/0769-sound-generic-drop.md
8933
8933
[ds]: https://github.com/rust-lang/rust/pull/26818
8934
8934
[dst1]: http://doc.rust-lang.org/nightly/std/mem/fn.size_of_val.html
8935
8935
[dst2]: http://doc.rust-lang.org/nightly/std/mem/fn.align_of_val.html
8936
8936
[dst3]: https://github.com/rust-lang/rust/pull/27351
8937
8937
[e]: https://github.com/rust-lang/rust/pull/24793
8938
8938
[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
8940
8940
[fl]: https://github.com/rust-lang/rust-installer/pull/41
8941
8941
[ie]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html
8942
8942
[iec]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.cause
@@ -9208,7 +9208,7 @@ Misc
9208
9208
to rustc.
9209
9209
* [Android executables are always position independent][pie].
9210
9210
* [The `drop_with_repr_extern` lint warns about mixing `repr(C)`
9211
- with `Drop`][drop ].
9211
+ with `Drop`][24935 ].
9212
9212
9213
9213
[`str::split_whitespace`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_whitespace
9214
9214
[`FromRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.FromRawFd.html
@@ -9238,7 +9238,7 @@ Misc
9238
9238
[`BinaryHeap`]: https://doc.rust-lang.org/nightly/std/collections/struct.BinaryHeap.html
9239
9239
[ll]: https://github.com/rust-lang/rust/pull/26022
9240
9240
[`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
9242
9242
9243
9243
Version 1.0.0 (2015-05-15)
9244
9244
========================
@@ -9291,15 +9291,15 @@ Language
9291
9291
property: generic code cannot behave differently for different type
9292
9292
arguments except in minor ways.
9293
9293
* 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
9295
9295
code.
9296
9296
9297
9297
Libraries
9298
9298
---------
9299
9299
9300
9300
* The `thread_local` module [has been renamed to `std::thread`][th].
9301
9301
* The methods of `IteratorExt` [have been moved to the `Iterator`
9302
- trait itself][ie ].
9302
+ trait itself][23300 ].
9303
9303
* Several traits that implement Rust's conventions for type
9304
9304
conversions, `AsMut`, `AsRef`, `From`, and `Into` have been
9305
9305
[centralized in the `std::convert` module][con].
@@ -9318,7 +9318,7 @@ Libraries
9318
9318
* [In method resolution, object methods are resolved before inherent
9319
9319
methods][meth].
9320
9320
* [`String::from_str` has been deprecated in favor of the `From` impl,
9321
- `String::from`][sf ].
9321
+ `String::from`][24517 ].
9322
9322
* [`io::Error` implements `Sync`][ios].
9323
9323
* [The `words` method on `&str` has been replaced with
9324
9324
`split_whitespace`][sw], to avoid answering the tricky question, 'what is
@@ -9366,15 +9366,15 @@ Misc
9366
9366
[con]: https://github.com/rust-lang/rust/pull/23875
9367
9367
[cr]: https://github.com/rust-lang/rust/pull/23419
9368
9368
[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
9370
9370
[inv]: https://github.com/rust-lang/rust/pull/23938
9371
9371
[ios]: https://github.com/rust-lang/rust/pull/24133
9372
9372
[lex]: https://github.com/rust-lang/rfcs/blob/master/text/0879-small-base-lexing.md
9373
9373
[lt]: https://github.com/rust-lang/rust/pull/24057
9374
9374
[meth]: https://github.com/rust-lang/rust/pull/24056
9375
9375
[pat]: https://github.com/rust-lang/rfcs/blob/master/text/0528-string-patterns.md
9376
9376
[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
9378
9378
[slp]: https://github.com/rust-lang/rust/pull/23949
9379
9379
[spl]: https://github.com/rust-lang/rfcs/blob/master/text/0979-align-splitn-with-other-languages.md
9380
9380
[sw]: https://github.com/rust-lang/rfcs/blob/master/text/1054-str-words.md
@@ -9392,7 +9392,7 @@ Misc
9392
9392
[conversion]: https://github.com/rust-lang/rfcs/pull/529
9393
9393
[num-traits]: https://github.com/rust-lang/rust/pull/23549
9394
9394
[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
9396
9396
[ci-compare]: https://gist.github.com/brson/a30a77836fbec057cbee
9397
9397
[fn-inherit]: https://github.com/rust-lang/rust/pull/23282
9398
9398
[fn-blanket]: https://github.com/rust-lang/rust/pull/23895
0 commit comments