Skip to content

Commit

Permalink
integation+bugfix: Fix regression, document title missing ..
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorGray committed Jun 15, 2024
1 parent d21b18b commit 07cd7f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 07cd7f8

Please sign in to comment.