Use a more common word than "elide", e.g. omit

This commit is contained in:
Chris C Cerami 2015-10-04 22:48:07 -04:00 committed by Chris C Cerami
parent 11a612795a
commit 915cf01cb6

View file

@ -70,7 +70,7 @@ fn bar<'a>(x: &'a i32) {
```
The `'a` reads the lifetime a. Technically, every reference has some lifetime
associated with it, but the compiler lets you elide them in common cases.
associated with it, but the compiler lets you omit them in common cases.
Before we get to that, though, lets break the explicit example down:
```rust,ignore