Merge branch 'post-06' into post-07

This commit is contained in:
Philipp Oppermann
2019-06-17 17:28:32 +02:00

View File

@@ -115,7 +115,7 @@ impl Writer {
for byte in s.bytes() { for byte in s.bytes() {
match byte { match byte {
// printable ASCII byte or newline // printable ASCII byte or newline
0x20...0x7e | b'\n' => self.write_byte(byte), 0x20..=0x7e | b'\n' => self.write_byte(byte),
// not part of printable ASCII range // not part of printable ASCII range
_ => self.write_byte(0xfe), _ => self.write_byte(0xfe),
} }