From 9c27ccff1962a6a25992708f0d2d1f36a0ea4fa1 Mon Sep 17 00:00:00 2001 From: Alexis Bourget Date: Tue, 13 Oct 2020 00:24:09 +0200 Subject: [PATCH] Intra doc links for str/mod.rs --- library/core/src/str/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/core/src/str/mod.rs b/library/core/src/str/mod.rs index 604e317110c3e..c5a2a70c4f9d5 100644 --- a/library/core/src/str/mod.rs +++ b/library/core/src/str/mod.rs @@ -2252,9 +2252,9 @@ impl str { /// but non-ASCII letters are unchanged. /// /// To return a new uppercased value without modifying the existing one, use - /// [`to_ascii_uppercase`]. + /// [`to_ascii_uppercase()`]. /// - /// [`to_ascii_uppercase`]: #method.to_ascii_uppercase + /// [`to_ascii_uppercase()`]: prim@str::to_ascii_uppercase() /// /// # Examples /// @@ -2279,9 +2279,9 @@ impl str { /// but non-ASCII letters are unchanged. /// /// To return a new lowercased value without modifying the existing one, use - /// [`to_ascii_lowercase`]. + /// [`to_ascii_lowercase()`]. /// - /// [`to_ascii_lowercase`]: #method.to_ascii_lowercase + /// [`to_ascii_lowercase()`]: prim@str::to_ascii_lowercase() /// /// # Examples ///