We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a04b88d commit deae8deCopy full SHA for deae8de
src/libcore/sync/atomic.rs
@@ -205,8 +205,9 @@ pub enum Ordering {
205
/// [`Release`]: http://llvm.org/docs/Atomics.html#release
206
#[stable(feature = "rust1", since = "1.0.0")]
207
Acquire,
208
- /// When coupled with a load, uses [`Acquire`] ordering, and with a store
209
- /// [`Release`] ordering.
+ /// Has the effects of both [`Acquire`] and [`Release`] together.
+ ///
210
+ /// If you only are concerned about a load or a store, consider using one of those instead.
211
///
212
/// [`Acquire`]: http://llvm.org/docs/Atomics.html#acquire
213
0 commit comments