don't surround comment strings in quotes

master
Sameer Puri 5 years ago
parent 94538202c6
commit 13c1f32d1f

@ -30,7 +30,7 @@ impl std::fmt::Display for Value {
write!(f, "{}", float)
},
Self::String(string) => {
write!(f, "\"{}\"", string)
write!(f, "{}", string)
}
}
}

Loading…
Cancel
Save