]> git.lizzy.rs Git - rust.git/commitdiff
Simplify text
authorStefan Schindler <dns2utf8@estada.ch>
Tue, 10 May 2016 09:06:30 +0000 (11:06 +0200)
committerStefan Schindler <dns2utf8@estada.ch>
Tue, 10 May 2016 09:06:30 +0000 (11:06 +0200)
src/libcore/sync/atomic.rs

index cf3e45cf3de79baf85a79adc15b4121353477a1c..e141a92c3ee3dabe5c2d3dcd0b57f6ead4cdbb5b 100644 (file)
@@ -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