cl-ast: Print space between items :-)

This commit is contained in:
John 2024-04-16 23:45:54 -05:00
parent 9e90eea7b6
commit f6e44f3773

View File

@ -78,7 +78,7 @@ mod display {
impl Display for File { impl Display for File {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
separate(&self.items, "\n")(f) separate(&self.items, "\n\n")(f)
} }
} }