From 6ea0b98963e184327dc12612c8e5c1cf561a1f05 Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Thu, 10 Jul 2025 10:01:33 -0600 Subject: [PATCH] ent show: blank line between comment header and description This makes it a little easier to read. --- src/bin/ent/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/ent/main.rs b/src/bin/ent/main.rs index 8bc0817..034fc4f 100644 --- a/src/bin/ent/main.rs +++ b/src/bin/ent/main.rs @@ -194,6 +194,7 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<( println!("comment: {}", comment.uuid); println!("author: {}", comment.author); println!("timestamp: {}", comment.timestamp); + println!(""); println!("{}", comment.description); } }