From a3c7f2c38ef795ad34e225ca54fa6bf625e8a842 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 18 Jul 2014 14:28:06 -0700 Subject: [PATCH] Don't escape `/` when printing. It's not necessary and it's a little ugly to look at --- src/show.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/show.rs b/src/show.rs index 78aceef..a99a088 100644 --- a/src/show.rs +++ b/src/show.rs @@ -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)), }