Skip to content

Commit

Permalink
Unrolled build for rust-lang#115454
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#115454 - vwkd:patch-1, r=scottmcm

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
rust-timer authored Oct 6, 2023
2 parents 6683f13 + dfdab8f commit 9ac04fd
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 9ac04fd

Please sign in to comment.