We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90251b3 commit e8303beCopy full SHA for e8303be
src/behavior-considered-undefined.md
@@ -27,7 +27,7 @@ code.
27
* Breaking the [pointer aliasing rules]. `&mut T` and `&T` follow LLVM’s scoped
28
[noalias] model, except if the `&T` contains an [`UnsafeCell<U>`].
29
* Mutating non-mutable data (that is, data reached through a shared
30
- reference or data owned by a `let` binding), unless that data is contained
+ reference or data owned by an immutable binding), unless that data is contained
31
within an [`UnsafeCell<U>`].
32
* Invoking undefined behavior via compiler intrinsics.
33
* Executing code compiled with platform features that the current platform
0 commit comments