]> git.lizzy.rs Git - rust.git/commitdiff
remove rich hickey love
authorSteve Klabnik <steve@steveklabnik.com>
Wed, 10 Sep 2014 22:29:58 +0000 (18:29 -0400)
committerSteve Klabnik <steve@steveklabnik.com>
Wed, 10 Sep 2014 22:29:58 +0000 (18:29 -0400)
src/doc/guide.md

index c42cfe46fd5bd2e90a8c620824e5bbc2ac1a6cce..71f1c42f9721a0e9a54326fd2fb3eaa3b05c30f6 100644 (file)
@@ -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> { ... }