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.
2 parents 39cef99 + 56a6820 commit 2570a51Copy full SHA for 2570a51
src/expressions/operator-expr.md
@@ -86,7 +86,7 @@ let a = & & & & mut 10;
86
87
The `*` (dereference) operator is also a unary prefix operator. When applied to
88
a [pointer](../types/pointer.md) it denotes the pointed-to location. If
89
-the expression is of type `&mut T` and `*mut T`, and is either a local
+the expression is of type `&mut T` or `*mut T`, and is either a local
90
variable, a (nested) field of a local variable or is a mutable [place
91
expression], then the resulting memory location can be assigned to.
92
Dereferencing a raw pointer requires `unsafe`.
0 commit comments