diff options
author | Alex Crichton <alex@alexcrichton.com> | 2014-07-18 14:28:06 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2014-07-18 14:28:06 -0700 |
commit | a3c7f2c38ef795ad34e225ca54fa6bf625e8a842 (patch) | |
tree | d257068a7baea5e9c296da2fe23184a73cfc768d /src | |
parent | 76cf3d1d3ef0fb21ade21d313d8b67b65ed7e8ac (diff) | |
download | milf-rs-a3c7f2c38ef795ad34e225ca54fa6bf625e8a842.tar.gz milf-rs-a3c7f2c38ef795ad34e225ca54fa6bf625e8a842.zip |
Don't escape `/` when printing.
It's not necessary and it's a little ugly to look at
Diffstat (limited to 'src')
-rw-r--r-- | src/show.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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)), } |