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.
1 parent b1bd3a3 commit e2bb734Copy full SHA for e2bb734
src/doc/trpl/mutability.md
@@ -35,7 +35,7 @@ let y = &mut x;
35
36
`y` is an immutable binding to a mutable reference, which means that you can’t
37
bind `y` to something else (`y = &mut z`), but you can mutate the thing that’s
38
-bound to `y`. (`*y = 5`) A subtle distinction.
+bound to `y` (`*y = 5`). A subtle distinction.
39
40
Of course, if you need both:
41
0 commit comments