@@ -92,8 +92,8 @@ once you are certain that `maybe_t: MaybeUninit<T>` contains an initialized `T`.
92
92
As [ ` MaybeUninit<T> ` ] is the safer alternative, starting with Rust 1.38,
93
93
the function [ ` mem::uninitialized ` ] will be deprecated.
94
94
95
- To read more about uninitialized memory, [ ` mem::uninitialized ` ] , and [ ` MaybeUninit<T> ` ] ,
96
- read [ Alexis Beingessner's blog post] [ gankro-blog ] about the subject .
95
+ To find out more about uninitialized memory, [ ` mem::uninitialized ` ] ,
96
+ and [ ` MaybeUninit<T> ` ] , read [ Alexis Beingessner's blog post] [ gankro-blog ] .
97
97
The standard library also contains extensive documentation about [ ` MaybeUninit<T> ` ] .
98
98
99
99
### NLL for Rust 2015
@@ -125,10 +125,10 @@ As a result, NLL is currently in a "migration mode" wherein we will emit warning
125
125
of errors if the NLL borrow checker rejects code the old AST borrow checker would accept.
126
126
Please see [ this list] [ crater-nll ] of public crates that are affected.
127
127
128
- To read more about NLL, MIR, the story around fixing soundness holes,
129
- and what you can do about the warnings if you have them, [ read Felix Klock's blog post] [ felix-blog ] .
128
+ To find out more about NLL, MIR, the story around fixing soundness holes,
129
+ and what you can do about the warnings if you have them, read [ Felix Klock's blog post] [ felix-blog ] .
130
130
131
- ### A new ` HashMap<K, V> ` implementation
131
+ ### A new [ ` HashMap<K, V> ` ] implementation
132
132
133
133
[ `hashbrown` ] : https://crates.io/crates/hashbrown
134
134
[ `HashMap<K, V>` ] : https://doc.rust-lang.org/std/collections/struct.HashMap.html
@@ -162,7 +162,7 @@ Cargo will exit with an error.
162
162
To prepopulate the local cache in preparation for going offline,
163
163
use the [ ` cargo fetch ` ] command, which downloads all the required dependencies for a project.
164
164
165
- For more details , read Nick Cameron's [ blog post] [ nrc-blog ] .
165
+ To find out more about [ ` --offline ` ] and [ ` cargo fetch ` ] , read [ Nick Cameron's blog post] [ nrc-blog ] .
166
166
167
167
For information on other changes to Cargo, see the [ detailed release notes] [ relnotes-cargo ] .
168
168
0 commit comments