cargo fmt

This commit is contained in:
Elnu 2023-08-24 12:39:38 -07:00
parent f6775da3d0
commit c8969adee2
10 changed files with 17 additions and 11 deletions

View file

@ -13,10 +13,10 @@ struct Args {
#[arg(short, long)]
output: Option<PathBuf>,
/// Page width
#[arg(long, default_value="11in")]
#[arg(long, default_value = "11in")]
width: SVGMeasure,
/// Page height
#[arg(long, default_value="8.5in")]
#[arg(long, default_value = "8.5in")]
height: SVGMeasure,
}