fix typo in {Rc, Arc}::get_mut_unchecked docs
This commit is contained in:
parent
2a4b00beaa
commit
61b18b58ab
@ -1092,7 +1092,7 @@ impl<T: ?Sized> Rc<T> {
|
||||
/// # Safety
|
||||
///
|
||||
/// If any other `Rc` or [`Weak`] pointers to the same allocation exist, then
|
||||
/// they must be must not be dereferenced or have active borrows for the duration
|
||||
/// they must not be dereferenced or have active borrows for the duration
|
||||
/// of the returned borrow, and their inner type must be exactly the same as the
|
||||
/// inner type of this Rc (including lifetimes). This is trivially the case if no
|
||||
/// such pointers exist, for example immediately after `Rc::new`.
|
||||
|
@ -1733,7 +1733,7 @@ impl<T: ?Sized> Arc<T> {
|
||||
/// # Safety
|
||||
///
|
||||
/// If any other `Arc` or [`Weak`] pointers to the same allocation exist, then
|
||||
/// they must be must not be dereferenced or have active borrows for the duration
|
||||
/// they must not be dereferenced or have active borrows for the duration
|
||||
/// of the returned borrow, and their inner type must be exactly the same as the
|
||||
/// inner type of this Rc (including lifetimes). This is trivially the case if no
|
||||
/// such pointers exist, for example immediately after `Arc::new`.
|
||||
|
Loading…
x
Reference in New Issue
Block a user