1
Fork 0

Rollup merge of #101931 - msakuta:master, r=thomcc

doc: Fix a typo in `Rc::make_mut` docstring

A very minor typo fix.
This commit is contained in:
Dylan DPC 2022-09-17 15:31:09 +05:30 committed by GitHub
commit 80cceb8f77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1142,7 +1142,7 @@ impl<T: Clone> Rc<T> {
/// be cloned. /// be cloned.
/// ///
/// See also [`get_mut`], which will fail rather than cloning the inner value /// See also [`get_mut`], which will fail rather than cloning the inner value
/// or diassociating [`Weak`] pointers. /// or disassociating [`Weak`] pointers.
/// ///
/// [`clone`]: Clone::clone /// [`clone`]: Clone::clone
/// [`get_mut`]: Rc::get_mut /// [`get_mut`]: Rc::get_mut