From 7665a7f01639c48c71b2efb2be0b94df921fe4ee Mon Sep 17 00:00:00 2001 From: Jack Wilson Date: Mon, 31 Aug 2015 15:52:02 -0700 Subject: [PATCH] Makes formatting of i32 consistent --- src/doc/trpl/lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index 3fe8ad0cfe28f..62270cb45b5e6 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