fixup! 427f999d61542d21221da4626ebbabb3ded51d63

This commit is contained in:
Noah Hellman 2023-01-21 20:50:49 +01:00
parent 5e8c683050
commit fb8a4c4a55

View file

@ -244,7 +244,7 @@ impl<C: std::fmt::Debug + Clone, A: std::fmt::Debug + Clone> std::fmt::Debug for
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
const INDENT: &str = " ";
let mut level = 0;
write!(f, "\n")?;
writeln!(f)?;
for e in self.clone() {
let indent = INDENT.repeat(level);
match e.kind {