We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c246ec commit e2b6b02Copy full SHA for e2b6b02
src/liballoc/arc.rs
@@ -211,7 +211,7 @@ impl<T: ?Sized> Arc<T> {
211
reason = "Weak pointers may not belong in this module.")]
212
pub fn downgrade(&self) -> Weak<T> {
213
loop {
214
- // 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
215
// below.
216
let cur = self.inner().weak.load(Relaxed);
217
0 commit comments