Skip to content

Commit 47271ab

Browse files
committed
Forgot typo-fix.
1 parent ac13f0d commit 47271ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/char.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ the Unicode General Categories 'Zs', 'Zl', 'Zp' and the additional
5050
5151
*/
5252
pure fn is_whitespace(c: char) -> bool {
53-
ret ('\x09' <= c && c <= '\x0x0d')
53+
ret ('\x09' <= c && c <= '\x0d')
5454
|| unicode::general_category::Zs(c)
5555
|| unicode::general_category::Zl(c)
5656
|| unicode::general_category::Zp(c);

0 commit comments

Comments
 (0)