about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-09-02 19:08:18 +0000
committerbors <bors@rust-lang.org>2015-09-02 19:08:18 +0000
commitcfd76b364cd01695517467299618ef63f1c0cc07 (patch)
tree6d8f9238df17433e2fa6192e2d02e70c4376913c
parenta53d31a51be3c4472d8d78bbc52b73ef880bb8cb (diff)
parent7665a7f01639c48c71b2efb2be0b94df921fe4ee (diff)
downloadrust-cfd76b364cd01695517467299618ef63f1c0cc07.tar.gz
rust-cfd76b364cd01695517467299618ef63f1c0cc07.zip
Auto merge of #28135 - jackwilsonv:patch-1, r=steveklabnik
Small formatting change

r? @steveklabnik
-rw-r--r--src/doc/trpl/lifetimes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md
index 3fe8ad0cfe2..62270cb45b5 100644
--- a/src/doc/trpl/lifetimes.md
+++ b/src/doc/trpl/lifetimes.md
@@ -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