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 3b13b66 commit f373916Copy full SHA for f373916
src/libcore/num/mod.rs
@@ -2734,7 +2734,7 @@ impl u8 {
2734
pub fn is_ascii_whitespace(&self) -> bool {
2735
if *self >= 0x80 { return false; }
2736
match ASCII_CHARACTER_CLASS[*self as usize] {
2737
- Cw|W => true,
+ Cw | W => true,
2738
_ => false
2739
}
2740
@@ -2772,7 +2772,7 @@ impl u8 {
2772
pub fn is_ascii_control(&self) -> bool {
2773
2774
2775
- C|Cw => true,
+ C | Cw => true,
2776
2777
2778
0 commit comments