Auto merge of #28135 - jackwilsonv:patch-1, r=steveklabnik

Small formatting change

r? @steveklabnik
This commit is contained in:
bors 2015-09-02 19:08:18 +00:00
commit cfd76b364c
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ If we wanted an `&mut` reference, wed do this:
If you compare `&mut i32` to `&'a mut i32`, theyre the same, its just that
the lifetime `'a` has snuck in between the `&` and the `mut i32`. We read `&mut
i32` as a mutable reference to an i32 and `&'a mut i32` as a mutable
i32` as a mutable reference to an `i32` and `&'a mut i32` as a mutable
reference to an `i32` with the lifetime `'a`.
# In `struct`s