File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1393,11 +1393,11 @@ impl<T: Clone> Arc<T> {
1393
1393
/// referred to as clone-on-write.
1394
1394
///
1395
1395
/// However, if there are no other `Arc` pointers to this allocation, but some [`Weak`]
1396
- /// pointers, then the [`Weak`] pointers will be disassociated and the inner value will not
1396
+ /// pointers, then the [`Weak`] pointers will be dissociated and the inner value will not
1397
1397
/// be cloned.
1398
1398
///
1399
1399
/// See also [`get_mut`], which will fail rather than cloning the inner value
1400
- /// or diassociating [`Weak`] pointers.
1400
+ /// or dissociating [`Weak`] pointers.
1401
1401
///
1402
1402
/// [`clone`]: Clone::clone
1403
1403
/// [`get_mut`]: Arc::get_mut
@@ -1420,7 +1420,7 @@ impl<T: Clone> Arc<T> {
1420
1420
/// assert_eq!(*other_data, 12);
1421
1421
/// ```
1422
1422
///
1423
- /// [`Weak`] pointers will be disassociated :
1423
+ /// [`Weak`] pointers will be dissociated :
1424
1424
///
1425
1425
/// ```
1426
1426
/// use std::sync::Arc;
You can’t perform that action at this time.
0 commit comments