From 11ee1b0b2e438f13153a1caff2d4ce6c2c9d0fa1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 11 Jun 2017 06:17:12 +1000 Subject: [PATCH] Add missing term 'disjoint' from matches, rmatches This follows `match_indices` --- src/libcollections/str.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs index eb32f4781948d..fdb6ee42127b9 100644 --- a/src/libcollections/str.rs +++ b/src/libcollections/str.rs @@ -1320,7 +1320,7 @@ impl str { core_str::StrExt::rsplitn(self, n, pat) } - /// An iterator over the matches of a pattern within the given string + /// An iterator over the disjoint matches of a pattern within the given string /// slice. /// /// The pattern can be a `&str`, [`char`], or a closure that @@ -1359,7 +1359,7 @@ impl str { core_str::StrExt::matches(self, pat) } - /// An iterator over the matches of a pattern within this string slice, + /// An iterator over the disjoint matches of a pattern within this string slice, /// yielded in reverse order. /// /// The pattern can be a `&str`, [`char`], or a closure that determines if