Rollup merge of #36326 - JDemler:master, r=steveklabnik

Fixed typo in nomicon
This commit is contained in:
Guillaume Gomez 2016-09-10 15:57:51 +02:00 committed by GitHub
commit 8bfc561752

View File

@ -52,7 +52,7 @@ let mut data = vec![1, 2, 3];
let x = &data[0];
// OH NO! `push` causes the backing storage of `data` to be reallocated.
// Dangling pointer! User after free! Alas!
// Dangling pointer! Use after free! Alas!
// (this does not compile in Rust)
data.push(4);