]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/book/lifetimes.md
Auto merge of #30641 - tsion:match-range, r=eddyb
[rust.git] / src / doc / book / lifetimes.md
index 68bbd0c98993dad5e3ac960a73cdfb936efb8bfc..2d418786e9a1ecbdced56712107249c77c91a714 100644 (file)
@@ -103,7 +103,7 @@ Then in our parameter list, we use the lifetimes we’ve named:
 ...(x: &'a i32)
 ```
 
-If we wanted an `&mut` reference, we’d do this:
+If we wanted a `&mut` reference, we’d do this:
 
 ```rust,ignore
 ...(x: &'a mut i32)