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 ac13f0d commit 47271abCopy full SHA for 47271ab
src/libcore/char.rs
@@ -50,7 +50,7 @@ the Unicode General Categories 'Zs', 'Zl', 'Zp' and the additional
50
51
*/
52
pure fn is_whitespace(c: char) -> bool {
53
- ret ('\x09' <= c && c <= '\x0x0d')
+ ret ('\x09' <= c && c <= '\x0d')
54
|| unicode::general_category::Zs(c)
55
|| unicode::general_category::Zl(c)
56
|| unicode::general_category::Zp(c);
0 commit comments