We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Rc
1 parent 29b6e0f commit e67fa77Copy full SHA for e67fa77
src/liballoc/rc.rs
@@ -773,7 +773,7 @@ impl<T: Clone> Rc<T> {
773
/// referred to as clone-on-write.
774
///
775
/// If there are no other `Rc` pointers to this value, then [`Weak`]
776
- /// pointers to this value will be dissassociated.
+ /// pointers to this value will be disassociated.
777
778
/// See also [`get_mut`], which will fail rather than cloning.
779
@@ -799,7 +799,7 @@ impl<T: Clone> Rc<T> {
799
/// assert_eq!(*other_data, 12);
800
/// ```
801
802
- /// [`Weak`] pointers will be dissassociated:
+ /// [`Weak`] pointers will be disassociated:
803
804
805
/// use std::rc::Rc;
0 commit comments