Skip to content

Commit 915cf01

Browse files
Chris C Ceramicorincerami
authored andcommitted
Use a more common word than "elide", e.g. omit
1 parent 11a6127 commit 915cf01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/lifetimes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fn bar<'a>(x: &'a i32) {
7070
```
7171

7272
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.
73+
associated with it, but the compiler lets you omit them in common cases.
7474
Before we get to that, though, let’s break the explicit example down:
7575

7676
```rust,ignore

0 commit comments

Comments
 (0)