Skip to content

Commit 29216ad

Browse files
authored
Fix wrong path in expressions/operator-expr.md
1 parent 27ad493 commit 29216ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expressions/operator-expr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Dereferencing a raw pointer requires `unsafe`.
9393

9494
On non-pointer types `*x` is equivalent to `*std::ops::Deref::deref(&x)` in an
9595
[immutable place expression context](expressions.html#mutability) and
96-
`*std::ops::Deref::deref_mut(&mut x)` in a mutable place expression context.
96+
`*std::ops::DerefMut::deref_mut(&mut x)` in a mutable place expression context.
9797

9898
```rust
9999
let x = &7;

0 commit comments

Comments
 (0)