about summary refs log tree commit diff
path: root/src/libcore/sync
diff options
context:
space:
mode:
authorGeoff Yoerger <geoffreyiy1@gmail.com>2017-01-19 20:43:43 -0600
committerGitHub <noreply@github.com>2017-01-19 20:43:43 -0600
commit02ead27c935887b148e58df999dbd8fb9be9d789 (patch)
treeb21353cac58b36785f562a44be5424fa96e4f431 /src/libcore/sync
parentc4c9ff2f00975e00ba56c1b1d309ff1f278f3760 (diff)
downloadrust-02ead27c935887b148e58df999dbd8fb9be9d789.tar.gz
rust-02ead27c935887b148e58df999dbd8fb9be9d789.zip
Into item level docs (enum Ordering)
Diffstat (limited to 'src/libcore/sync')
-rw-r--r--src/libcore/sync/atomic.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs
index ff7abb45d7b..bd1d00486ec 100644
--- a/src/libcore/sync/atomic.rs
+++ b/src/libcore/sync/atomic.rs
@@ -142,6 +142,8 @@ unsafe impl<T> Sync for AtomicPtr<T> {}
 ///
 /// Rust's memory orderings are [the same as
 /// LLVM's](http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations).
+///
+/// For more information see the [nomicon](https://doc.rust-lang.org/nomicon/atomics.html).
 #[stable(feature = "rust1", since = "1.0.0")]
 #[derive(Copy, Clone, Debug)]
 pub enum Ordering {