Wrap words at 80 characters

This commit is contained in:
Chris C Cerami 2015-10-06 10:39:37 -04:00
parent e39808cba8
commit f490f5171e

View file

@ -70,7 +70,8 @@ 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 (i.e. omit, see ["Lifetime Elision"][lifetime-elision] below) 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