We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e39808c commit f490f51Copy full SHA for f490f51
src/doc/trpl/lifetimes.md
@@ -70,7 +70,8 @@ fn bar<'a>(x: &'a i32) {
70
```
71
72
The `'a` reads ‘the lifetime a’. Technically, every reference has some lifetime
73
-associated with it, but the compiler lets you elide (i.e. omit, see ["Lifetime Elision"][lifetime-elision] below) them in common cases.
+associated with it, but the compiler lets you elide (i.e. omit, see
74
+["Lifetime Elision"][lifetime-elision] below) them in common cases.
75
Before we get to that, though, let’s break the explicit example down:
76
77
[lifetime-elision]: #user-content-lifetime-elision
0 commit comments