Don't escape / when printing.

It's not necessary and it's a little ugly to look at
This commit is contained in:
Alex Crichton 2014-07-18 14:28:06 -07:00
parent 76cf3d1d3e
commit a3c7f2c38e

View file

@ -20,7 +20,6 @@ impl fmt::Show for Value {
'\u000c' => try!(write!(f, "\\f")),
'\u000d' => try!(write!(f, "\\r")),
'\u0022' => try!(write!(f, "\\\"")),
'\u002f' => try!(write!(f, "\\/")),
'\u005c' => try!(write!(f, "\\\\")),
ch => try!(write!(f, "{}", ch)),
}