diff options
| author | Stefan Schindler <dns2utf8@estada.ch> | 2016-05-10 11:06:30 +0200 |
|---|---|---|
| committer | Stefan Schindler <dns2utf8@estada.ch> | 2016-05-10 11:06:30 +0200 |
| commit | 66404f34d255eb7304a6ecf8350589684e62951d (patch) | |
| tree | 88771c2ccd93ab4162a936462059a2f39507f299 /src/libcore | |
| parent | a4d2424cc304e97f553c6d8eef17a24dc2f12c01 (diff) | |
| download | rust-66404f34d255eb7304a6ecf8350589684e62951d.tar.gz rust-66404f34d255eb7304a6ecf8350589684e62951d.zip | |
Simplify text
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/sync/atomic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index cf3e45cf3de..e141a92c3ee 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -142,13 +142,13 @@ pub enum Ordering { #[stable(feature = "rust1", since = "1.0.0")] Relaxed, /// When coupled with a store, all previous writes become visible - /// to another thread that performs a load with `Acquire` ordering + /// to the other threads that perform a load with `Acquire` ordering /// on the same value. #[stable(feature = "rust1", since = "1.0.0")] Release, /// When coupled with a load, all subsequent loads will see data /// written before a store with `Release` ordering on the same value - /// in another thread. + /// in other threads. #[stable(feature = "rust1", since = "1.0.0")] Acquire, /// When coupled with a load, uses `Acquire` ordering, and with a store |
