Rollup merge of #42586 - ideasman42:patch-1, r=steveklabnik
Docstring: add missing term 'disjoint' from matches, rmatches This follows `match_indices`
This commit is contained in:
commit
b646ca9267
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue