trpl: punctuation fix

This commit is contained in:
Alex Burka 2015-05-14 12:20:33 -04:00
parent b1bd3a3c51
commit e2bb734ac1

View file

@ -35,7 +35,7 @@ let y = &mut x;
`y` is an immutable binding to a mutable reference, which means that you cant
bind `y` to something else (`y = &mut z`), but you can mutate the thing thats
bound to `y`. (`*y = 5`) A subtle distinction.
bound to `y` (`*y = 5`). A subtle distinction.
Of course, if you need both: