From 94ed32d493eba02b5c2511238cafa7d36aee17c6 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Tue, 15 Oct 2024 16:23:46 +0200 Subject: [PATCH] make subcommand headers smaller --- documentation/autodoc/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/autodoc/src/main.rs b/documentation/autodoc/src/main.rs index 88f0d7c64a..ff34dcbf5a 100644 --- a/documentation/autodoc/src/main.rs +++ b/documentation/autodoc/src/main.rs @@ -159,7 +159,7 @@ fn main() -> io::Result<()> { write_output_to_file(&mut file, output)?; for (subcommand, subsubcommands) in subcommands { - writeln!(file, "\n### `{}` ", subcommand)?; + writeln!(file, "\n## `{}` ", subcommand)?; let output = Command::new(main_command) .arg(subcommand) .arg("--help")