Rollup merge of #86101 - glittershark:bound-as-mut-doc-fix, r=m-ou-se

Correct type signature in doc for Bound::as_mut

Thanks to ``@drmason13`` for pointing this out!
This commit is contained in:
Yuki Okushi 2021-06-08 13:26:37 +09:00 committed by GitHub
commit a416e05d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -686,7 +686,7 @@ impl<T> Bound<T> {
}
}
/// Converts from `&mut Bound<T>` to `Bound<&T>`.
/// Converts from `&mut Bound<T>` to `Bound<&mut T>`.
#[inline]
#[unstable(feature = "bound_as_ref", issue = "80996")]
pub fn as_mut(&mut self) -> Bound<&mut T> {