Fix info about generic impls in AsMut docs

This text was copy-pasted from the `AsRef` docs to `AsMut`, but needed
some additional adjustments for correctness.
This commit is contained in:
Matt Brubeck 2018-02-04 11:57:36 -08:00
parent 0c6091fbd0
commit f243f9239d

View File

@ -141,9 +141,9 @@ pub trait AsRef<T: ?Sized> {
/// ///
/// # Generic Implementations /// # Generic Implementations
/// ///
/// - `AsMut` auto-dereferences if the inner type is a reference or a mutable /// - `AsMut` auto-dereferences if the inner type is a mutable reference
/// reference (e.g.: `foo.as_ref()` will work the same if `foo` has type /// (e.g.: `foo.as_mut()` will work the same if `foo` has type `&mut Foo`
/// `&mut Foo` or `&&mut Foo`) /// or `&mut &mut Foo`)
/// ///
/// # Examples /// # Examples
/// ///