about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorChris Gregory <czipperz@gmail.com>2019-05-24 21:08:59 -0500
committerGitHub <noreply@github.com>2019-05-24 21:08:59 -0500
commitfbe9f16bc2102b2450384a103d9799debd4c914e (patch)
tree427871e250a842dadf736d70015b16f71bf27db5 /src/liballoc
parent15241a4d4106b12cb6cbe25837cc56b629aad2dd (diff)
downloadrust-fbe9f16bc2102b2450384a103d9799debd4c914e.tar.gz
rust-fbe9f16bc2102b2450384a103d9799debd4c914e.zip
Reword `are not other` to `are no other`
Co-Authored-By: Jonas Schievink <jonasschievink@gmail.com>
Diffstat (limited to 'src/liballoc')
-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.