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.
expressions/operator-expr.md
1 parent 27ad493 commit 29216adCopy full SHA for 29216ad
src/expressions/operator-expr.md
@@ -93,7 +93,7 @@ Dereferencing a raw pointer requires `unsafe`.
93
94
On non-pointer types `*x` is equivalent to `*std::ops::Deref::deref(&x)` in an
95
[immutable place expression context](expressions.html#mutability) and
96
-`*std::ops::Deref::deref_mut(&mut x)` in a mutable place expression context.
+`*std::ops::DerefMut::deref_mut(&mut x)` in a mutable place expression context.
97
98
```rust
99
let x = &7;
0 commit comments