Skip to content

Commit f373916

Browse files
Add missing space in match arm
1 parent 3b13b66 commit f373916

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/num/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2734,7 +2734,7 @@ impl u8 {
27342734
pub fn is_ascii_whitespace(&self) -> bool {
27352735
if *self >= 0x80 { return false; }
27362736
match ASCII_CHARACTER_CLASS[*self as usize] {
2737-
Cw|W => true,
2737+
Cw | W => true,
27382738
_ => false
27392739
}
27402740
}
@@ -2772,7 +2772,7 @@ impl u8 {
27722772
pub fn is_ascii_control(&self) -> bool {
27732773
if *self >= 0x80 { return false; }
27742774
match ASCII_CHARACTER_CLASS[*self as usize] {
2775-
C|Cw => true,
2775+
C | Cw => true,
27762776
_ => false
27772777
}
27782778
}

0 commit comments

Comments
 (0)