File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -142,13 +142,13 @@ pub enum Ordering {
142
142
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
143
143
Relaxed ,
144
144
/// 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
146
146
/// on the same value.
147
147
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
148
148
Release ,
149
149
/// When coupled with a load, all subsequent loads will see data
150
150
/// written before a store with `Release` ordering on the same value
151
- /// in another thread .
151
+ /// in other threads .
152
152
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
153
153
Acquire ,
154
154
/// When coupled with a load, uses `Acquire` ordering, and with a store
You can’t perform that action at this time.
0 commit comments