]> git.lizzy.rs Git - rust.git/commitdiff
Use intra-doc links
authorDenis Vasilik <contact@denisvasilik.com>
Tue, 11 Aug 2020 20:16:31 +0000 (22:16 +0200)
committerDenis Vasilik <contact@denisvasilik.com>
Tue, 11 Aug 2020 20:16:31 +0000 (22:16 +0200)
library/core/src/hint.rs

index 3dc0ee2b555300d8c5183b3141517fb1b8a15c98..9ee50a90510137f3bdf7a48b70ae4ba83f3cf837 100644 (file)
@@ -24,7 +24,7 @@
 /// Otherwise, consider using the [`unreachable!`] macro, which does not allow
 /// optimizations but will panic when executed.
 ///
-/// [`unreachable!`]: ../macro.unreachable.html
+/// [`unreachable!`]: unreachable
 ///
 /// # Example
 ///
@@ -61,7 +61,7 @@
 /// **Note**: On platforms that do not support receiving spin-loop hints this function does not
 /// do anything at all.
 ///
-/// [`core::sync::atomic::spin_loop_hint`]: ../sync/atomic/fn.spin_loop_hint.html
+/// [`core::sync::atomic::spin_loop_hint`]: crate::sync::atomic::spin_loop_hint
 #[inline]
 #[unstable(feature = "renamed_spin_loop", issue = "55002")]
 pub fn spin_loop() {
@@ -99,7 +99,7 @@ pub fn spin_loop() {
 /// An identity function that *__hints__* to the compiler to be maximally pessimistic about what
 /// `black_box` could do.
 ///
-/// [`std::convert::identity`]: https://doc.rust-lang.org/core/convert/fn.identity.html
+/// [`std::convert::identity`]: crate::convert::identity
 ///
 /// Unlike [`std::convert::identity`], a Rust compiler is encouraged to assume that `black_box` can
 /// use `x` in any possible valid way that Rust code is allowed to without introducing undefined