Skip to content

Commit

Permalink
Fix 'Relaaxed' typo in code comment
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed Jul 3, 2015
1 parent 4c246ec commit e2b6b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liballoc/arc.rs
Expand Up @@ -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);

Expand Down

0 comments on commit e2b6b02

Please sign in to comment.