Skip to content

Commit 258a65d

Browse files
committed
Fix generic bound of SplitInclusive's DoubleEndedIterator impl
1 parent 9b4ea39 commit 258a65d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/str/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ impl<'a, P: Pattern<'a, Searcher: Clone>> Clone for SplitInclusive<'a, P> {
13451345
}
13461346

13471347
#[stable(feature = "split_inclusive", since = "1.51.0")]
1348-
impl<'a, P: Pattern<'a, Searcher: ReverseSearcher<'a>>> DoubleEndedIterator
1348+
impl<'a, P: Pattern<'a, Searcher: DoubleEndedSearcher<'a>>> DoubleEndedIterator
13491349
for SplitInclusive<'a, P>
13501350
{
13511351
#[inline]

0 commit comments

Comments
 (0)