We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a612b2 commit b27bcc0Copy full SHA for b27bcc0
src/libcore/str/mod.rs
@@ -2712,7 +2712,7 @@ impl str {
2712
/// All kinds of ASCII whitespace are considered:
2713
///
2714
/// ```
2715
- /// let mut iter = " Mary had\ta little \n\t lamb".split_whitespace();
+ /// let mut iter = " Mary had\ta little \n\t lamb".split_ascii_whitespace();
2716
/// assert_eq!(Some("Mary"), iter.next());
2717
/// assert_eq!(Some("had"), iter.next());
2718
/// assert_eq!(Some("a"), iter.next());
0 commit comments