From 07cd7f8beec10cbba2815aed94eadacd1d7b803d Mon Sep 17 00:00:00 2001 From: Connor Gray Date: Sat, 15 Jun 2024 13:21:14 -0700 Subject: [PATCH] integation+bugfix: Fix regression, document title missing `..` --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 941c4bd..eeeb7c4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -135,7 +135,7 @@ fn write_help_markdown( let title = match options.title { Some(ref title) => title.to_owned(), - None => format!("Command-Line Help for {title_name}"), + None => format!("Command-Line Help for `{title_name}`"), }; writeln!(buffer, "# {title}\n",).unwrap();