Don't escape /
when printing.
It's not necessary and it's a little ugly to look at
This commit is contained in:
parent
76cf3d1d3e
commit
a3c7f2c38e
|
@ -20,7 +20,6 @@ impl fmt::Show for Value {
|
||||||
'\u000c' => try!(write!(f, "\\f")),
|
'\u000c' => try!(write!(f, "\\f")),
|
||||||
'\u000d' => try!(write!(f, "\\r")),
|
'\u000d' => try!(write!(f, "\\r")),
|
||||||
'\u0022' => try!(write!(f, "\\\"")),
|
'\u0022' => try!(write!(f, "\\\"")),
|
||||||
'\u002f' => try!(write!(f, "\\/")),
|
|
||||||
'\u005c' => try!(write!(f, "\\\\")),
|
'\u005c' => try!(write!(f, "\\\\")),
|
||||||
ch => try!(write!(f, "{}", ch)),
|
ch => try!(write!(f, "{}", ch)),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue