about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJack Wilson <jack.wilson.v@gmail.com>2015-08-31 15:52:02 -0700
committerJack Wilson <jack.wilson.v@gmail.com>2015-08-31 15:52:02 -0700
commit7665a7f01639c48c71b2efb2be0b94df921fe4ee (patch)
tree3cc26636fb015f420ce24f8ec0d94fdf954fd1de
parentf9f82f8dc8c936c9cd55d529d9941c5d925d9e67 (diff)
downloadrust-7665a7f01639c48c71b2efb2be0b94df921fe4ee.tar.gz
rust-7665a7f01639c48c71b2efb2be0b94df921fe4ee.zip
Makes formatting of i32 consistent
-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