Skip to content

Commit d3bddf3

Browse files
committed
updating docs to reflect current situation
1 parent 265fef4 commit d3bddf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/sync/atomic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
//! some atomic operations. Maximally portable code will want to be careful
6363
//! about which atomic types are used. `AtomicUsize` and `AtomicIsize` are
6464
//! generally the most portable, but even then they're not available everywhere.
65-
//! For reference, the `std` library requires pointer-sized atomics, although
65+
//! For reference, the `std` library requires `AtomicBool`s and pointer-sized atomics, although
6666
//! `core` does not.
6767
//!
6868
//! Currently you'll need to use `#[cfg(target_arch)]` primarily to

0 commit comments

Comments
 (0)