We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f56aecc + facfd31 commit 8dbdda7Copy full SHA for 8dbdda7
src/rust-2024/static-mut-references.md
@@ -68,7 +68,7 @@ The [atomic types][atomics] provide integers, pointers, and booleans that can be
68
# use std::sync::atomic::Ordering;
69
# use std::sync::atomic::AtomicU64;
70
71
-// Chnage from this:
+// Change from this:
72
// static mut COUNTER: u64 = 0;
73
// to this:
74
static COUNTER: AtomicU64 = AtomicU64::new(0);
0 commit comments