Skip to content

Commit

Permalink
fix link targets
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Oct 12, 2019
1 parent f363550 commit d6ab45d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/libcore/sync/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,9 @@ pub enum Ordering {
///
/// Corresponds to [`memory_order_release`] in C++20.
///
/// [`Release`]: #Release
/// [`Acquire`]: #Acquire
/// [`Relaxed`]: #Relaxed
/// [`Release`]: #variant.Release
/// [`Acquire`]: #variant.Acquire
/// [`Relaxed`]: #variant.Relaxed
/// [`memory_order_release`]: https://en.cppreference.com/w/cpp/atomic/memory_order#Release-Acquire_ordering
#[stable(feature = "rust1", since = "1.0.0")]
Release,
Expand All @@ -266,9 +266,9 @@ pub enum Ordering {
///
/// Corresponds to [`memory_order_acquire`] in C++20.
///
/// [`Acquire`]: #Acquire
/// [`Release`]: #Release
/// [`Relaxed`]: #Relaxed
/// [`Acquire`]: #variant.Acquire
/// [`Release`]: #variant.Release
/// [`Relaxed`]: #variant.Relaxed
/// [`memory_order_acquire`]: https://en.cppreference.com/w/cpp/atomic/memory_order#Release-Acquire_ordering
#[stable(feature = "rust1", since = "1.0.0")]
Acquire,
Expand All @@ -284,9 +284,9 @@ pub enum Ordering {
/// Corresponds to [`memory_order_acq_rel`] in C++20.
///
/// [`memory_order_acq_rel`]: https://en.cppreference.com/w/cpp/atomic/memory_order#Release-Acquire_ordering
/// [`Acquire`]: #Acquire
/// [`Release`]: #Release
/// [`Relaxed`]: #Relaxed
/// [`Acquire`]: #variant.Acquire
/// [`Release`]: #variant.Release
/// [`Relaxed`]: #variant.Relaxed
#[stable(feature = "rust1", since = "1.0.0")]
AcqRel,
/// Like [`Acquire`]/[`Release`]/[`AcqRel`] (for load, store, and load-with-store
Expand All @@ -296,9 +296,9 @@ pub enum Ordering {
/// Corresponds to [`memory_order_seq_cst`] in C++20.
///
/// [`memory_order_seq_cst`]: https://en.cppreference.com/w/cpp/atomic/memory_order#Sequentially-consistent_ordering
/// [`Acquire`]: #Acquire
/// [`Release`]: #Release
/// [`AcqRel`]: #AcqRel
/// [`Acquire`]: #variant.Acquire
/// [`Release`]: #variant.Release
/// [`AcqRel`]: #variant.AcqRel
#[stable(feature = "rust1", since = "1.0.0")]
SeqCst,
}
Expand Down

0 comments on commit d6ab45d

Please sign in to comment.