We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 953f6c9 + 2464013 commit 776a0f2Copy full SHA for 776a0f2
src/doc/reference.md
@@ -4065,7 +4065,7 @@ the guarantee that these issues are never caused by safe code.
4065
* Breaking the [pointer aliasing
4066
rules](http://llvm.org/docs/LangRef.html#pointer-aliasing-rules)
4067
with raw pointers (a subset of the rules used by C)
4068
-* `&mut` and `&` follow LLVM’s scoped [noalias] model, except if the `&T`
+* `&mut T` and `&T` follow LLVM’s scoped [noalias] model, except if the `&T`
4069
contains an `UnsafeCell<U>`. Unsafe code must not violate these aliasing
4070
guarantees.
4071
* Mutating non-mutable data (that is, data reached through a shared reference or
0 commit comments