Skip to content

Commit

Permalink
Auto merge of #28135 - jackwilsonv:patch-1, r=steveklabnik
Browse files Browse the repository at this point in the history
Small formatting change

r? @steveklabnik
  • Loading branch information
bors committed Sep 2, 2015
2 parents a53d31a + 7665a7f commit cfd76b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/lifetimes.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ If we wanted an `&mut` reference, we’d do this:

If you compare `&mut i32` to `&'a mut i32`, they’re the same, it’s 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
Expand Down

0 comments on commit cfd76b3

Please sign in to comment.