Use intra-doc links
This commit is contained in:
parent
08324fe6f7
commit
3c2eb18b9b
1 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ use crate::intrinsics;
|
||||||
/// Otherwise, consider using the [`unreachable!`] macro, which does not allow
|
/// Otherwise, consider using the [`unreachable!`] macro, which does not allow
|
||||||
/// optimizations but will panic when executed.
|
/// optimizations but will panic when executed.
|
||||||
///
|
///
|
||||||
/// [`unreachable!`]: ../macro.unreachable.html
|
/// [`unreachable!`]: unreachable
|
||||||
///
|
///
|
||||||
/// # Example
|
/// # Example
|
||||||
///
|
///
|
||||||
|
@ -61,7 +61,7 @@ pub const unsafe fn unreachable_unchecked() -> ! {
|
||||||
/// **Note**: On platforms that do not support receiving spin-loop hints this function does not
|
/// **Note**: On platforms that do not support receiving spin-loop hints this function does not
|
||||||
/// do anything at all.
|
/// 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]
|
#[inline]
|
||||||
#[unstable(feature = "renamed_spin_loop", issue = "55002")]
|
#[unstable(feature = "renamed_spin_loop", issue = "55002")]
|
||||||
pub fn spin_loop() {
|
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
|
/// An identity function that *__hints__* to the compiler to be maximally pessimistic about what
|
||||||
/// `black_box` could do.
|
/// `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
|
/// 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
|
/// use `x` in any possible valid way that Rust code is allowed to without introducing undefined
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue