From e2b6b02e3a22948ff18d18fe9b92ce222cc50ed3 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Fri, 3 Jul 2015 00:13:02 -0700 Subject: [PATCH] Fix 'Relaaxed' typo in code comment --- 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 024d64cc83827..2a47fd29bd653 100644 --- a/src/liballoc/arc.rs +++ b/src/liballoc/arc.rs @@ -211,7 +211,7 @@ impl Arc { reason = "Weak pointers may not belong in this module.")] pub fn downgrade(&self) -> Weak { 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);