From e2bb734ac1457f85c2db821b4e9dbb885059d337 Mon Sep 17 00:00:00 2001 From: Alex Burka Date: Thu, 14 May 2015 12:20:33 -0400 Subject: [PATCH] trpl: punctuation fix --- src/doc/trpl/mutability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/mutability.md b/src/doc/trpl/mutability.md index 674d65974494..7186c65cdf42 100644 --- a/src/doc/trpl/mutability.md +++ b/src/doc/trpl/mutability.md @@ -35,7 +35,7 @@ let y = &mut x; `y` is an immutable binding to a mutable reference, which means that you can’t bind `y` to something else (`y = &mut z`), but you can mutate the thing that’s -bound to `y`. (`*y = 5`) A subtle distinction. +bound to `y` (`*y = 5`). A subtle distinction. Of course, if you need both: