about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorStefan Schindler <dns2utf8@estada.ch>2016-05-10 11:06:30 +0200
committerStefan Schindler <dns2utf8@estada.ch>2016-05-10 11:06:30 +0200
commit66404f34d255eb7304a6ecf8350589684e62951d (patch)
tree88771c2ccd93ab4162a936462059a2f39507f299 /src/libcore
parenta4d2424cc304e97f553c6d8eef17a24dc2f12c01 (diff)
downloadrust-66404f34d255eb7304a6ecf8350589684e62951d.tar.gz
rust-66404f34d255eb7304a6ecf8350589684e62951d.zip
Simplify text
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/sync/atomic.rs4
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