We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f29748 + 8d49ecf commit b9ccb09Copy full SHA for b9ccb09
src/behavior-considered-undefined.md
@@ -25,7 +25,7 @@ code.
25
* Data races.
26
* Evaluating a [dereference expression] (`*expr`) on a raw pointer that is
27
[dangling] or unaligned, even in [place expression context]
28
- (e.g. `addr_of!(&*expr)`).
+ (e.g. `addr_of!(*expr)`).
29
* Breaking the [pointer aliasing rules]. `Box<T>`, `&mut T` and `&T` follow
30
LLVM’s scoped [noalias] model, except if the `&T` contains an
31
[`UnsafeCell<U>`]. References and boxes must not be [dangling] while they are
0 commit comments