From f373916cb55be160faa9fc8ae41483b3bebec850 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Fri, 29 Sep 2017 16:55:31 +0200 Subject: [PATCH] Add missing space in match arm --- src/libcore/num/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index c045a8fedda1..ed8a2a0e553a 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -2734,7 +2734,7 @@ impl u8 { pub fn is_ascii_whitespace(&self) -> bool { if *self >= 0x80 { return false; } match ASCII_CHARACTER_CLASS[*self as usize] { - Cw|W => true, + Cw | W => true, _ => false } } @@ -2772,7 +2772,7 @@ impl u8 { pub fn is_ascii_control(&self) -> bool { if *self >= 0x80 { return false; } match ASCII_CHARACTER_CLASS[*self as usize] { - C|Cw => true, + C | Cw => true, _ => false } }