Clippy pass

This commit is contained in:
Dane Johnson 2024-11-18 21:25:06 -06:00
parent 5f57c5aed3
commit c29d463adf

View File

@ -218,7 +218,7 @@ impl fmt::Display for Stmt {
}
if let Some(block) = else_block {
write!(f, "else")?;
write_block(f, &block)?;
write_block(f, block)?;
}
Ok(())
}