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 0028f85 + c8b0689 commit c356211Copy full SHA for c356211
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
src/doc/trpl/patterns.md
@@ -66,7 +66,7 @@ match x {
66
}
67
```
68
69
-This prints `something else`
+This prints `something else`.
70
71
# Bindings
72
@@ -152,7 +152,7 @@ match x {
152
153
154
155
-This prints `Got an int!`
+This prints `Got an int!`.
156
157
# ref and ref mut
158
0 commit comments