diff options
| author | bors <bors@rust-lang.org> | 2015-07-03 07:13:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-07-03 07:13:57 +0000 |
| commit | f3b97a74aade8cb13a10c3669a1c18e19ff45890 (patch) | |
| tree | 2383656c062a1b2c06e3569d8ac70b0922668880 /src/liballoc | |
| parent | 4c246ecb64d147a2853747dedf1db76d06094891 (diff) | |
| parent | e2b6b02e3a22948ff18d18fe9b92ce222cc50ed3 (diff) | |
| download | rust-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.rs | 2 |
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); |
