From fbe9f16bc2102b2450384a103d9799debd4c914e Mon Sep 17 00:00:00 2001 From: Chris Gregory Date: Fri, 24 May 2019 21:08:59 -0500 Subject: [PATCH] Reword `are not other` to `are no other` Co-Authored-By: Jonas Schievink --- src/liballoc/rc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 Rc { /// [`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.