We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9faf042 commit 520c559Copy full SHA for 520c559
reference/src/glossary.md
@@ -79,7 +79,7 @@ let raw2_wrong = raw1.wrapping_add(raw2.wrapping_sub(raw1 as usize) as usize);
79
// In other words, raw2 and raw2_wrong have same *address*...
80
assert_eq!(raw2 as usize, raw2_wrong as usize);
81
// ...but it would be UB to use raw2_wrong, as it has the wrong *provenance*:
82
-// it points to address 0x200 in allocation @2, but the pointer
+// it points to address 0x200, which is in allocation @2, but the pointer
83
// has provenance @1.
84
```
85
0 commit comments