Skip to content

Commit cfd76b3

Browse files
committed
Auto merge of #28135 - jackwilsonv:patch-1, r=steveklabnik
Small formatting change r? @steveklabnik
2 parents a53d31a + 7665a7f commit cfd76b3

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)