about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris C Cerami <chrisccerami@gmail.com>2015-10-06 10:39:37 -0400
committerChris C Cerami <chrisccerami@gmail.com>2015-10-06 10:39:37 -0400
commitf490f5171e3557af3264c0aa5dbb4bb49e3c72b3 (patch)
tree5d3c56c79cc13a33802bf5501e5b2291ba72460a
parente39808cba87392c6a95243844698c4b368853a36 (diff)
downloadrust-f490f5171e3557af3264c0aa5dbb4bb49e3c72b3.tar.gz
rust-f490f5171e3557af3264c0aa5dbb4bb49e3c72b3.zip
Wrap words at 80 characters
-rw-r--r--src/doc/trpl/lifetimes.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md
index eb61dfbd121..4896be714bb 100644
--- a/src/doc/trpl/lifetimes.md
+++ b/src/doc/trpl/lifetimes.md
@@ -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, let’s break the explicit example down:
 
 [lifetime-elision]: #user-content-lifetime-elision