1
Fork 0

remove rich hickey love

This commit is contained in:
Steve Klabnik 2014-09-10 18:29:58 -04:00
parent 311227003f
commit 8f7470d864

View 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> { ... }