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.
2 parents 4c246ec + e2b6b02 commit f3b97a7Copy full SHA for f3b97a7
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