From 5a700b26e8cffee1d1ffbebf6d58a25a0cda1a41 Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Thu, 2 Apr 2015 15:08:10 -0700 Subject: [PATCH] liballoc: fix typo --- src/liballoc/arc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs index f87c450eda5ed..c07a6063d1475 100644 --- a/src/liballoc/arc.rs +++ b/src/liballoc/arc.rs @@ -446,7 +446,7 @@ impl Weak { /// ``` pub fn upgrade(&self) -> Option> { // We use a CAS loop to increment the strong count instead of a - // fetch_add because once the count hits 0 is must never be above 0. + // fetch_add because once the count hits 0 it must never be above 0. let inner = self.inner(); loop { let n = inner.strong.load(SeqCst);