From 1159ba0fe6b84865e5cbb7e9f004a614d3e6c146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 8 Oct 2024 00:07:25 +0300 Subject: [PATCH] fix(args): update the heading of tui flag --- git-cliff/src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cliff/src/args.rs b/git-cliff/src/args.rs index 9ff4d3d960..ea2ec4f0c3 100644 --- a/git-cliff/src/args.rs +++ b/git-cliff/src/args.rs @@ -355,7 +355,7 @@ pub struct Args { )] pub bitbucket_repo: Option, /// Launches the TUI. - #[arg(long)] + #[arg(long, help_heading = Some("FLAGS"))] pub tui: bool, }