From 39247dda9556f168ae164e06d13d19f530bc3a21 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 9 May 2023 12:18:24 -0400 Subject: [PATCH] Fix --page-width flag (#98) --- src/opts/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opts/cli.rs b/src/opts/cli.rs index ed991c6d..f69050db 100644 --- a/src/opts/cli.rs +++ b/src/opts/cli.rs @@ -68,7 +68,7 @@ pub fn command(scale_help: String, default_theme: Option) -> Command let page_width_arg = Arg::new("page_width") .short('w') - .long("page width") + .long("page-width") .number_of_values(1) .value_parser(value_parser!(f32)) .help("Maximum width of page in pixels");