Skip to content

Commit f3b97a7

Browse files
committed
Auto merge of #26752 - frewsxcv:patch-25, r=alexcrichton
2 parents 4c246ec + e2b6b02 commit f3b97a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/arc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ impl<T: ?Sized> Arc<T> {
211211
reason = "Weak pointers may not belong in this module.")]
212212
pub fn downgrade(&self) -> Weak<T> {
213213
loop {
214-
// This Relaaxed is OK because we're checking the value in the CAS
214+
// This Relaxed is OK because we're checking the value in the CAS
215215
// below.
216216
let cur = self.inner().weak.load(Relaxed);
217217

0 commit comments

Comments
 (0)