Skip to content

Commit 66404f3

Browse files
committed
Simplify text
1 parent a4d2424 commit 66404f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/sync/atomic.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ pub enum Ordering {
142142
#[stable(feature = "rust1", since = "1.0.0")]
143143
Relaxed,
144144
/// When coupled with a store, all previous writes become visible
145-
/// to another thread that performs a load with `Acquire` ordering
145+
/// to the other threads that perform a load with `Acquire` ordering
146146
/// on the same value.
147147
#[stable(feature = "rust1", since = "1.0.0")]
148148
Release,
149149
/// When coupled with a load, all subsequent loads will see data
150150
/// written before a store with `Release` ordering on the same value
151-
/// in another thread.
151+
/// in other threads.
152152
#[stable(feature = "rust1", since = "1.0.0")]
153153
Acquire,
154154
/// When coupled with a load, uses `Acquire` ordering, and with a store

0 commit comments

Comments
 (0)