We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4914eab commit bb823d8Copy full SHA for bb823d8
src/lib.rs
@@ -258,7 +258,7 @@ impl UnicodeSegmentation for str {
258
}
259
260
#[inline]
261
- fn grapheme_indices(&self, is_extended: bool) -> GraphemeIndices {
+ fn grapheme_indices(&self, is_extended: bool) -> GraphemeIndices<'_> {
262
grapheme::new_grapheme_indices(self, is_extended)
263
264
@@ -293,7 +293,7 @@ impl UnicodeSegmentation for str {
293
294
295
296
- fn split_sentence_bound_indices(&self) -> USentenceBoundIndices {
+ fn split_sentence_bound_indices(&self) -> USentenceBoundIndices<'_> {
297
sentence::new_sentence_bound_indices(self)
298
299
0 commit comments