diff --git a/src/rust-2024/static-mut-references.md b/src/rust-2024/static-mut-references.md index 4f1091d4..45ae68d3 100644 --- a/src/rust-2024/static-mut-references.md +++ b/src/rust-2024/static-mut-references.md @@ -68,7 +68,7 @@ The [atomic types][atomics] provide integers, pointers, and booleans that can be # use std::sync::atomic::Ordering; # use std::sync::atomic::AtomicU64; -// Chnage from this: +// Change from this: // static mut COUNTER: u64 = 0; // to this: static COUNTER: AtomicU64 = AtomicU64::new(0);