We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2855801 + eb47cd4 commit f223d09Copy full SHA for f223d09
src/behavior-considered-undefined.md
@@ -10,7 +10,7 @@ the guarantee that these issues are never caused by safe code.
10
(uninitialized) memory
11
* Breaking the [pointer aliasing
12
rules](http://llvm.org/docs/LangRef.html#pointer-aliasing-rules)
13
- with raw pointers (a subset of the rules used by C)
+ on accesses through raw pointers (a subset of the rules used by C)
14
* `&mut T` and `&T` follow LLVM’s scoped [noalias] model, except if the `&T`
15
contains an `UnsafeCell<U>`. Unsafe code must not violate these aliasing
16
guarantees.
0 commit comments