diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-01-27 18:08:51 +0000 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-01-27 18:08:51 +0000 |
| commit | 09b3903aecf2c8cafa62cb67eccbe10a3ca09b5d (patch) | |
| tree | 8a2da1f4744b3171c52e426d73faf982156189ab /src/libcore/sync | |
| parent | 8367fb7ba6abae89ab7e17c1b3987ee321f5bb71 (diff) | |
| download | rust-09b3903aecf2c8cafa62cb67eccbe10a3ca09b5d.tar.gz rust-09b3903aecf2c8cafa62cb67eccbe10a3ca09b5d.zip | |
Fix a few links in the docs
Diffstat (limited to 'src/libcore/sync')
| -rw-r--r-- | src/libcore/sync/atomic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index a3cb1284477..743e3c41170 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -24,7 +24,7 @@ //! same as [LLVM atomic orderings][1]. For more information see the [nomicon][2]. //! //! [1]: http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations -//! [2]: https://doc.rust-lang.org/nomicon/atomics.html +//! [2]: ../../../nomicon/atomics.html //! //! Atomic variables are safe to share between threads (they implement `Sync`) //! but they do not themselves provide the mechanism for sharing and follow the @@ -144,7 +144,7 @@ unsafe impl<T> Sync for AtomicPtr<T> {} /// LLVM's](http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations). /// /// For more information see the [nomicon][1]. -/// [1]: https://doc.rust-lang.org/nomicon/atomics.html +/// [1]: ../../../nomicon/atomics.html #[stable(feature = "rust1", since = "1.0.0")] #[derive(Copy, Clone, Debug)] pub enum Ordering { |
