about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/liballoc/rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs
index 40fae408a57..ce9067c2ff9 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -588,7 +588,7 @@ impl<T: Clone> Rc<T> {
     /// [`clone`] the inner value to ensure unique ownership.  This is also
     /// referred to as clone-on-write.
     ///
-    /// If there are not other `Rc` pointers to this value, then [`Weak`]
+    /// If there are no other `Rc` pointers to this value, then [`Weak`]
     /// pointers to this value will be dissassociated.
     ///
     /// See also [`get_mut`], which will fail rather than cloning.