]> git.lizzy.rs Git - rust.git/commitdiff
Auto merge of #26752 - frewsxcv:patch-25, r=alexcrichton
authorbors <bors@rust-lang.org>
Fri, 3 Jul 2015 07:13:57 +0000 (07:13 +0000)
committerbors <bors@rust-lang.org>
Fri, 3 Jul 2015 07:13:57 +0000 (07:13 +0000)
src/liballoc/arc.rs

index 024d64cc83827e5829b8307b8df4105ddef1aab7..2a47fd29bd6532c9215b037dbebda8242abdc255 100644 (file)
@@ -211,7 +211,7 @@ impl<T: ?Sized> Arc<T> {
                reason = "Weak pointers may not belong in this module.")]
     pub fn downgrade(&self) -> Weak<T> {
         loop {
-            // This Relaaxed is OK because we're checking the value in the CAS
+            // This Relaxed is OK because we're checking the value in the CAS
             // below.
             let cur = self.inner().weak.load(Relaxed);