about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Burka <durka42+github@gmail.com>2015-05-14 12:20:33 -0400
committerAlex Burka <durka42+github@gmail.com>2015-05-14 12:20:33 -0400
commite2bb734ac1457f85c2db821b4e9dbb885059d337 (patch)
tree87dd349e383c977745ca56b0bc026475c6f5586e /src
parentb1bd3a3c5180b2d671e5810cb5211b2d2b456a71 (diff)
downloadrust-e2bb734ac1457f85c2db821b4e9dbb885059d337.tar.gz
rust-e2bb734ac1457f85c2db821b4e9dbb885059d337.zip
trpl: punctuation fix
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/mutability.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/mutability.md b/src/doc/trpl/mutability.md
index 674d6597449..7186c65cdf4 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: