From f490f5171e3557af3264c0aa5dbb4bb49e3c72b3 Mon Sep 17 00:00:00 2001 From: Chris C Cerami Date: Tue, 6 Oct 2015 10:39:37 -0400 Subject: [PATCH] Wrap words at 80 characters --- src/doc/trpl/lifetimes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index eb61dfbd121f..4896be714bb8 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