about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
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);