Issue #9042: Report incorrect number of spaces around => in the style checker.

This commit is contained in:
Simon Martin 2015-12-22 15:57:10 +01:00
parent 1ddcf9463a
commit cec661fa86
7 changed files with 48 additions and 38 deletions

View file

@ -15,7 +15,7 @@ fn hexdump_slice(buf: &[u8]) {
stderr.write_all(output.as_bytes()).unwrap();
match i % 16 {
15 => { stderr.write_all(b"\n ").unwrap(); },
7 => { stderr.write_all(b" ").unwrap(); },
7 => { stderr.write_all(b" ").unwrap(); },
_ => ()
}
stderr.flush().unwrap();