@@ -24,7 +24,7 @@ Compiler
2424- [ You can now pass multiple lint flags to rustc to override the previous
2525 flags.] [ 67885 ] For example; ` rustc -D unused -A unused-variables ` denies
2626 everything in the ` unused ` lint group unused except ` unused-variables ` which
27- is explicitly allowed. Passing ` rustc -A unused-variables -D unused ` denies
27+ is explicitly allowed. However, passing ` rustc -A unused-variables -D unused ` denies
2828 everything in the ` unused ` lint group ** including** ` unused-variables ` since
2929 the allow flag is specified before the deny flag (and therefore overridden).
3030- [ rustc will now prefer your system MinGW libraries over its bundled libraries
@@ -35,13 +35,13 @@ Libraries
3535---------
3636- [ ` Arc<[T; N]> ` , ` Box<[T; N]> ` , and ` Rc<[T; N]> ` , now implement
3737 ` TryFrom<Arc<[T]>> ` ,` TryFrom<Box<[T]>> ` , and ` TryFrom<Rc<[T]>> `
38- respectively.] [ 69538 ] Where ` N ` is ` 0..=32 ` .
38+ respectively.] [ 69538 ] These conversions succeed when ` N ` is ` 0..=32 ` .
3939- [ All ` to_be_bytes ` , ` to_le_bytes ` , ` to_ne_bytes ` , ` from_be_bytes ` ,
4040 ` from_le_bytes ` , and ` from_ne_bytes ` methods for integers are
4141 now ` const ` .] [ 69373 ]
4242- [ You can now use associated constants on floats and integers directly, rather
4343 than having to import the module.] [ 68952 ] e.g. You can now write ` u32::MAX ` or
44- ` f32::NAN ` no imports.
44+ ` f32::NAN ` with no imports.
4545- [ ` u8::is_ascii ` is now ` const ` .] [ 68984 ]
4646- [ ` String ` now implements ` AsMut<str> ` .] [ 68742 ]
4747- [ Added the ` primitive ` module to ` std ` and ` core ` .] [ 67637 ] This module
0 commit comments