Skip to content

Commit 7665a7f

Browse files
committed
Makes formatting of i32 consistent
1 parent f9f82f8 commit 7665a7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/lifetimes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ If we wanted an `&mut` reference, we’d do this:
108108

109109
If you compare `&mut i32` to `&'a mut i32`, they’re the same, it’s just that
110110
the lifetime `'a` has snuck in between the `&` and the `mut i32`. We read `&mut
111-
i32` as ‘a mutable reference to an i32’ and `&'a mut i32` as ‘a mutable
111+
i32` as ‘a mutable reference to an `i32`’ and `&'a mut i32` as ‘a mutable
112112
reference to an `i32` with the lifetime `'a`’.
113113

114114
# In `struct`s

0 commit comments

Comments
 (0)