Skip to content

Commit 8dbdda7

Browse files
authored
Merge pull request #358 from JSorngard/patch-1
Correct spelling error in `static-mut-references.md`
2 parents f56aecc + facfd31 commit 8dbdda7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-2024/static-mut-references.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The [atomic types][atomics] provide integers, pointers, and booleans that can be
6868
# use std::sync::atomic::Ordering;
6969
# use std::sync::atomic::AtomicU64;
7070
71-
// Chnage from this:
71+
// Change from this:
7272
// static mut COUNTER: u64 = 0;
7373
// to this:
7474
static COUNTER: AtomicU64 = AtomicU64::new(0);

0 commit comments

Comments
 (0)