@@ -52,7 +52,7 @@ practice is that if you try to do something like this on Rust 1.46:
52
52
``` rust
53
53
fn main () {
54
54
let xs = [0 ; 34 ];
55
-
55
+
56
56
println! (" {:?}" , xs );
57
57
}
58
58
```
@@ -71,12 +71,12 @@ error[E0277]: arrays only have std trait implementations for lengths 0..=32
71
71
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
72
72
```
73
73
74
- But with Rust 1.47, it will properly print out.
74
+ But with Rust 1.47, it will properly print out the array .
75
75
76
76
This should make arrays significantly more useful to folks, though it will
77
- take until the const generics feature stabilizes for libraries to fully be
78
- able to do this kind of implementation for their own traits. We do not have
79
- a current estimated date for the stabilization of const generics.
77
+ take until the const generics feature stabilizes for libraries to be able to do
78
+ this kind of implementation for their own traits. We do not have a current
79
+ estimated date for the stabilization of const generics.
80
80
81
81
#### Shorter backtraces
82
82
@@ -176,8 +176,6 @@ on Windows. Other platforms ignore this flag.
176
176
177
177
### Library changes
178
178
179
- [ Rustdoc has gained support for the Ayu theme] ( https://github.com/rust-lang/rust/pull/71237/ ) .
180
-
181
179
Additionally, nine new APIs were stabilized this release:
182
180
183
181
- [ ` Ident::new_raw ` ]
@@ -203,21 +201,24 @@ The following previously stable APIs have now been made `const`:
203
201
` is_ascii_punctuation ` , ` is_ascii_graphic ` , ` is_ascii_whitespace ` , and
204
202
` is_ascii_control ` methods for ` char ` and ` u8 ` .] [ 73858 ]
205
203
206
- [ `Ident::new_raw` ] : https://doc.rust-lang.org/nightly/proc_macro/struct.Ident.html#method.new_raw
207
- [ `Range::is_empty` ] : https://doc.rust-lang.org/nightly/std/ops/struct.Range.html#method.is_empty
208
- [ `RangeInclusive::is_empty` ] : https://doc.rust-lang.org/nightly/std/ops/struct.RangeInclusive.html#method.is_empty
209
- [ `Result::as_deref_mut` ] : https://doc.rust-lang.org/nightly/std/result/enum.Result.html#method.as_deref_mut
210
- [ `Result::as_deref` ] : https://doc.rust-lang.org/nightly/std/result/enum.Result.html#method.as_deref
211
- [ `TypeId::of` ] : https://doc.rust-lang.org/nightly/std/any/struct.TypeId.html#method.of
212
- [ `Vec::leak` ] : https://doc.rust-lang.org/nightly/std/vec/struct.Vec.html#method.leak
213
- [ `f32::TAU` ] : https://doc.rust-lang.org/nightly/std/f32/consts/constant.TAU.html
214
- [ `f64::TAU` ] : https://doc.rust-lang.org/nightly/std/f64/consts/constant.TAU.html
204
+ [ `Ident::new_raw` ] : https://doc.rust-lang.org/stable/proc_macro/struct.Ident.html#method.new_raw
205
+ [ `Range::is_empty` ] : https://doc.rust-lang.org/stable/std/ops/struct.Range.html#method.is_empty
206
+ [ `RangeInclusive::is_empty` ] : https://doc.rust-lang.org/stable/std/ops/struct.RangeInclusive.html#method.is_empty
207
+ [ `Result::as_deref_mut` ] : https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.as_deref_mut
208
+ [ `Result::as_deref` ] : https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.as_deref
209
+ [ `TypeId::of` ] : https://doc.rust-lang.org/stable/std/any/struct.TypeId.html#method.of
210
+ [ `Vec::leak` ] : https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.leak
211
+ [ `f32::TAU` ] : https://doc.rust-lang.org/stable/std/f32/consts/constant.TAU.html
212
+ [ `f64::TAU` ] : https://doc.rust-lang.org/stable/std/f64/consts/constant.TAU.html
213
+ [ `pointer::offset_from` ] : https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from
215
214
[ 73858 ] : https://github.com/rust-lang/rust/pull/73858/
216
215
217
216
See the [ detailed release notes] [ notes ] for more.
218
217
219
218
### Other changes
220
219
220
+ [ Rustdoc has gained support for the Ayu theme] ( https://github.com/rust-lang/rust/pull/71237/ ) .
221
+
221
222
[ relnotes-cargo ] : https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-147-2020-10-08
222
223
[ relnotes-clippy ] : https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md#rust-147
223
224
0 commit comments