We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a221ad0 + f6aab5b commit 8bfc561Copy full SHA for 8bfc561
src/doc/nomicon/ownership.md
@@ -52,7 +52,7 @@ let mut data = vec![1, 2, 3];
52
let x = &data[0];
53
54
// OH NO! `push` causes the backing storage of `data` to be reallocated.
55
-// Dangling pointer! User after free! Alas!
+// Dangling pointer! Use after free! Alas!
56
// (this does not compile in Rust)
57
data.push(4);
58
0 commit comments