fixed pretty print bug

main
ondra05 2022-07-24 22:00:25 +02:00
parent f4b77f0270
commit d480c17589
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ impl<'a> Display for Expr<'a> {
match self {
Self::List(list) => write_seq(f, list, "(", ")"),
Self::Vector(vec) => write_seq(f, vec, "[", "]"),
Self::Map(map) => write_seq(f, map.iter().map(|(k, v)| format!("{k} {v}")), "[", "]"),
Self::Map(map) => write_seq(f, map.iter().map(|(k, v)| format!("{k} {v}")), "{", "}"),
Self::Symbol(sym) => write!(f, "{sym}"),
Self::Keyword(kw) => write!(f, ":{kw}"),
Self::Number(n) => write!(f, "{n}"),