From 9c7fb6c44750af069bf382404adaa7a6287f9007 Mon Sep 17 00:00:00 2001 From: Denis Vasilik Date: Tue, 1 Sep 2020 17:35:56 +0200 Subject: [PATCH 1/2] Use intra-doc links --- library/core/src/panic.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/library/core/src/panic.rs b/library/core/src/panic.rs index 316ecafe572..263f97e70f3 100644 --- a/library/core/src/panic.rs +++ b/library/core/src/panic.rs @@ -92,8 +92,6 @@ impl<'a> PanicInfo<'a> { /// If the `panic!` macro from the `core` crate (not from `std`) /// was used with a formatting string and some additional arguments, /// returns that message ready to be used for example with [`fmt::write`] - /// - /// [`fmt::write`]: ../fmt/fn.write.html #[unstable(feature = "panic_info_message", issue = "66745")] pub fn message(&self) -> Option<&fmt::Arguments<'_>> { self.message @@ -105,8 +103,6 @@ impl<'a> PanicInfo<'a> { /// This method will currently always return [`Some`], but this may change /// in future versions. /// - /// [`Some`]: ../../std/option/enum.Option.html#variant.Some - /// /// # Examples /// /// ```should_panic @@ -153,10 +149,7 @@ impl fmt::Display for PanicInfo<'_> { /// A struct containing information about the location of a panic. /// -/// This structure is created by the [`location`] method of [`PanicInfo`]. -/// -/// [`location`]: ../../std/panic/struct.PanicInfo.html#method.location -/// [`PanicInfo`]: ../../std/panic/struct.PanicInfo.html +/// This structure is created by the [`PanicInfo::location`] method of [`PanicInfo`]. /// /// # Examples /// From b639cb1e462757aa191060e68da5e0de54e9c016 Mon Sep 17 00:00:00 2001 From: Denis Vasilik Date: Tue, 1 Sep 2020 18:16:34 +0200 Subject: [PATCH 2/2] Enhance wording Co-authored-by: Joshua Nelson --- library/core/src/panic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/panic.rs b/library/core/src/panic.rs index 263f97e70f3..25ee73c626e 100644 --- a/library/core/src/panic.rs +++ b/library/core/src/panic.rs @@ -149,7 +149,7 @@ impl fmt::Display for PanicInfo<'_> { /// A struct containing information about the location of a panic. /// -/// This structure is created by the [`PanicInfo::location`] method of [`PanicInfo`]. +/// This structure is created by [`PanicInfo::location()`]. /// /// # Examples ///