Rollup merge of #75853 - LeSeulArtichaut:core-intra-docs-3, r=jyn514

Use more intra-doc-links in `core::fmt`

This is a follow-up to #75819, which encountered some broken links due to #75176, so this PR contains the links that are blocked on #75176.

r? @jyn514
This commit is contained in:
Dylan DPC 2020-10-05 02:29:23 +02:00 committed by GitHub
commit 6c9e85726c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@ pub struct Error;
/// library. The [`write!`] macro accepts an instance of [`io::Write`], and the /// library. The [`write!`] macro accepts an instance of [`io::Write`], and the
/// [`io::Write`] trait is favored over implementing this trait. /// [`io::Write`] trait is favored over implementing this trait.
/// ///
/// [`write!`]: ../../std/macro.write.html /// [`write!`]: crate::write!
/// [`io::Write`]: ../../std/io/trait.Write.html /// [`io::Write`]: ../../std/io/trait.Write.html
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub trait Write { pub trait Write {
@ -1058,7 +1058,7 @@ pub trait UpperExp {
/// assert_eq!(output, "Hello world!"); /// assert_eq!(output, "Hello world!");
/// ``` /// ```
/// ///
/// [`write!`]: ../../std/macro.write.html /// [`write!`]: crate::write!
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub fn write(output: &mut dyn Write, args: Arguments<'_>) -> Result { pub fn write(output: &mut dyn Write, args: Arguments<'_>) -> Result {
let mut formatter = Formatter { let mut formatter = Formatter {
@ -1886,7 +1886,7 @@ impl<'a> Formatter<'a> {
/// assert_eq!(format!("{:?}", Foo(vec![10, 11])), "{10, 11}"); /// assert_eq!(format!("{:?}", Foo(vec![10, 11])), "{10, 11}");
/// ``` /// ```
/// ///
/// [`format_args!`]: ../../std/macro.format_args.html /// [`format_args!`]: crate::format_args
/// ///
/// In this more complex example, we use [`format_args!`] and `.debug_set()` /// In this more complex example, we use [`format_args!`] and `.debug_set()`
/// to build a list of match arms: /// to build a list of match arms: