We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a53d31a + 7665a7f commit cfd76b3Copy full SHA for cfd76b3
src/doc/trpl/lifetimes.md
@@ -108,7 +108,7 @@ If we wanted an `&mut` reference, we’d do this:
108
109
If you compare `&mut i32` to `&'a mut i32`, they’re the same, it’s just that
110
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
+i32` as ‘a mutable reference to an `i32`’ and `&'a mut i32` as ‘a mutable
112
reference to an `i32` with the lifetime `'a`’.
113
114
# In `struct`s
0 commit comments