mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
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:
commit
a416e05d27
@ -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> {
|
||||
|
Loading…
Reference in New Issue
Block a user