We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b2b98a + 66404f3 commit d7f84b3Copy full SHA for d7f84b3
src/libcore/sync/atomic.rs
@@ -142,13 +142,13 @@ pub enum Ordering {
142
#[stable(feature = "rust1", since = "1.0.0")]
143
Relaxed,
144
/// When coupled with a store, all previous writes become visible
145
- /// to another thread that performs a load with `Acquire` ordering
+ /// to the other threads that perform a load with `Acquire` ordering
146
/// on the same value.
147
148
Release,
149
/// When coupled with a load, all subsequent loads will see data
150
/// written before a store with `Release` ordering on the same value
151
- /// in another thread.
+ /// in other threads.
152
153
Acquire,
154
/// When coupled with a load, uses `Acquire` ordering, and with a store
0 commit comments