From 8f7470d86411c58d4ab256eb8a91394b5270032c Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 10 Sep 2014 18:29:58 -0400 Subject: [PATCH] remove rich hickey love --- src/doc/guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index c42cfe46fd5b..71f1c42f9721 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -3618,9 +3618,9 @@ Here's the second note, which lets us know where the first borrow would be over. This is useful, because if we wait to try to borrow `x` after this borrow is over, then everything will work. -These rules are very simple, but that doesn't mean that they're easy. For more -advanced patterns, please consult the [Lifetime Guide](guide-lifetimes.html). -You'll also learn what this type signature with the `'a` syntax is: +For more advanced patterns, please consult the [Lifetime +Guide](guide-lifetimes.html). You'll also learn what this type signature with +the `'a` syntax is: ```{rust,ignore} pub fn as_maybe_owned(&self) -> MaybeOwned<'a> { ... }