From 9e5de4a4458514b241fdd47497109aee3737c0f0 Mon Sep 17 00:00:00 2001 From: Adrien Thebo Date: Sat, 18 Oct 2025 19:09:33 -0700 Subject: [PATCH] check: add flag help documentation (#662) --- check/src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/check/src/main.rs b/check/src/main.rs index 97fd477..47c8e13 100644 --- a/check/src/main.rs +++ b/check/src/main.rs @@ -16,19 +16,19 @@ use walkdir::WalkDir; #[derive(Parser, Debug)] #[command(version, about)] struct Args { - #[arg(short = 'p', long)] + #[arg(short = 'p', long, help = "A file or directory of packet captures")] path: PathBuf, - #[arg(short = 'P', long)] + #[arg(short = 'P', long, help = "Convert qmdl files to pcap before analysis")] pcapify: bool, - #[arg(long)] + #[arg(long, help = "Show why some packets were skipped during analysis")] show_skipped: bool, - #[arg(short, long)] + #[arg(short, long, help = "Only print warnings/errors to stdout")] quiet: bool, - #[arg(short, long)] + #[arg(short, long, help = "Show debug messages")] debug: bool, }