about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-07-03 07:13:57 +0000
committerbors <bors@rust-lang.org>2015-07-03 07:13:57 +0000
commitf3b97a74aade8cb13a10c3669a1c18e19ff45890 (patch)
tree2383656c062a1b2c06e3569d8ac70b0922668880 /src/liballoc
parent4c246ecb64d147a2853747dedf1db76d06094891 (diff)
parente2b6b02e3a22948ff18d18fe9b92ce222cc50ed3 (diff)
downloadrust-f3b97a74aade8cb13a10c3669a1c18e19ff45890.tar.gz
rust-f3b97a74aade8cb13a10c3669a1c18e19ff45890.zip
Auto merge of #26752 - frewsxcv:patch-25, r=alexcrichton
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index 024d64cc838..2a47fd29bd6 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -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);