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 {
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
You can’t perform that action at this time.
0 commit comments