We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915cf01 commit e39808cCopy full SHA for e39808c
src/doc/trpl/lifetimes.md
@@ -70,9 +70,11 @@ 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 omit them in common cases.
+associated with it, but the compiler lets you elide (i.e. omit, see ["Lifetime Elision"][lifetime-elision] below) them in common cases.
74
Before we get to that, though, let’s break the explicit example down:
75
76
+[lifetime-elision]: #user-content-lifetime-elision
77
+
78
```rust,ignore
79
fn bar<'a>(...)
80
0 commit comments