Don't escape single-quotes, that's not valid json

This commit is contained in:
Aria Beingessner 2022-06-23 23:18:19 -04:00
parent 714334098a
commit 97be935ff4
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ impl fmt::Display for Escape<'_> {
let escape = match c {
'\\' => Some(r"\\"),
'"' => Some(r#"\""#),
'\'' => Some(r"\'"),
'\r' => Some(r"\r"),
'\n' => Some(r"\n"),
'\t' => Some(r"\t"),