From f6e44f377357f862a51f73a8edc873a006335737 Mon Sep 17 00:00:00 2001 From: John Date: Tue, 16 Apr 2024 23:45:54 -0500 Subject: [PATCH] cl-ast: Print space between items :-) --- cl-ast/src/ast_impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl-ast/src/ast_impl.rs b/cl-ast/src/ast_impl.rs index de679a4..dd1effe 100644 --- a/cl-ast/src/ast_impl.rs +++ b/cl-ast/src/ast_impl.rs @@ -78,7 +78,7 @@ mod display { impl Display for File { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - separate(&self.items, "\n")(f) + separate(&self.items, "\n\n")(f) } }