Skip to content

Commit e8303be

Browse files
committed
let is too specific
1 parent 90251b3 commit e8303be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/behavior-considered-undefined.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ code.
2727
* Breaking the [pointer aliasing rules]. `&mut T` and `&T` follow LLVM’s scoped
2828
[noalias] model, except if the `&T` contains an [`UnsafeCell<U>`].
2929
* 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
30+
reference or data owned by an immutable binding), unless that data is contained
3131
within an [`UnsafeCell<U>`].
3232
* Invoking undefined behavior via compiler intrinsics.
3333
* Executing code compiled with platform features that the current platform

0 commit comments

Comments
 (0)