Auto merge of #28842 - chrisccerami:patch-1, r=steveklabnik

This commit is contained in:
bors 2015-10-06 17:57:00 +00:00
commit e7b6056048

View File

@ -70,9 +70,12 @@ 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 elide (i.e. omit, see
["Lifetime Elision"][lifetime-elision] below) them in common cases.
Before we get to that, though, lets break the explicit example down:
[lifetime-elision]: #user-content-lifetime-elision
```rust,ignore
fn bar<'a>(...)
```