Rollup merge of #27533 - steveklabnik:gh27109, r=Gankro

This should be a bit more prominent.

Fixes #27109
This commit is contained in:
Steve Klabnik 2015-08-05 15:09:49 -04:00
commit 3a7e3c24b9

View file

@ -38,6 +38,9 @@ use self::Cow::*;
/// type can be borrowed as multiple different types. In particular, `Vec<T>:
/// Borrow<Vec<T>>` and `Vec<T>: Borrow<[T]>`.
///
/// If you are implementing `Borrow` and both `Self` and `Borrowed` implement
/// `Hash`, `Eq`, and/or `Ord`, they must produce the same result.
///
/// `Borrow` is very similar to, but different than, `AsRef`. See
/// [the book][book] for more.
///