Skip to content

Commit

Permalink
Rollup merge of rust-lang#115454 - vwkd:patch-1, r=scottmcm
Browse files Browse the repository at this point in the history
Clarify example in docs of str::char_slice

Just a one word improvement.

“Last” can be misread as meaning the last (third) instead of the previous (first).
  • Loading branch information
GuillaumeGomez authored Oct 6, 2023
2 parents 9b2ff25 + dfdab8f commit eb469b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/str/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ impl str {
/// assert_eq!(Some((0, 'y')), char_indices.next()); // not (0, 'y̆')
/// assert_eq!(Some((1, '\u{0306}')), char_indices.next());
///
/// // note the 3 here - the last character took up two bytes
/// // note the 3 here - the previous character took up two bytes
/// assert_eq!(Some((3, 'e')), char_indices.next());
/// assert_eq!(Some((4, 's')), char_indices.next());
///
Expand Down

0 comments on commit eb469b2

Please sign in to comment.