Skip to content

Commit b4192aa

Browse files
authored
Module level doc
1 parent f0b4207 commit b4192aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/sync/atomic.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121
//!
2222
//! Each method takes an `Ordering` which represents the strength of
2323
//! the memory barrier for that operation. These orderings are the
24-
//! same as [LLVM atomic orderings][1].
24+
//! same as [LLVM atomic orderings][1]. For more information see the [nomicon][2]
2525
//!
2626
//! [1]: http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations
27+
//! [2]: https://doc.rust-lang.org/nomicon/atomics.html
2728
//!
2829
//! Atomic variables are safe to share between threads (they implement `Sync`)
2930
//! but they do not themselves provide the mechanism for sharing and follow the

0 commit comments

Comments
 (0)