Skip to content

Commit f490f51

Browse files
committed
Wrap words at 80 characters
1 parent e39808c commit f490f51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/doc/trpl/lifetimes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ 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 (i.e. omit, see ["Lifetime Elision"][lifetime-elision] below) them in common cases.
73+
associated with it, but the compiler lets you elide (i.e. omit, see
74+
["Lifetime Elision"][lifetime-elision] below) them in common cases.
7475
Before we get to that, though, let’s break the explicit example down:
7576

7677
[lifetime-elision]: #user-content-lifetime-elision

0 commit comments

Comments
 (0)