We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f60768 + f490f51 commit e7b6056Copy full SHA for e7b6056
src/doc/trpl/lifetimes.md
@@ -70,9 +70,12 @@ 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 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
78
+
79
```rust,ignore
80
fn bar<'a>(...)
81
0 commit comments