We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e522d9b commit 03dc507Copy full SHA for 03dc507
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