From 0169ce968c6489cc9acf107b558fa05f6ab430d2 Mon Sep 17 00:00:00 2001 From: Veera Date: Wed, 26 Jul 2023 17:57:56 -0500 Subject: [PATCH] Fix URL for `rmatches` --- library/core/src/str/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/str/mod.rs b/library/core/src/str/mod.rs index 9a93bb72903..07a5990e595 100644 --- a/library/core/src/str/mod.rs +++ b/library/core/src/str/mod.rs @@ -1666,7 +1666,7 @@ impl str { /// If the pattern allows a reverse search but its results might differ /// from a forward search, the [`rmatches`] method can be used. /// - /// [`rmatches`]: str::matches + /// [`rmatches`]: str::rmatches /// /// # Examples ///