From c7e23256b89faa4a8f5003fca4f7eda8168da9ad Mon Sep 17 00:00:00 2001 From: Rafa Couto Date: Sun, 13 Dec 2020 04:29:39 +0100 Subject: [PATCH] Update main.rs Help explanation is saying the opposite meaning of the flag: -w, --without-boot2 With boot2 Expected is: -w, --without-boot2 Without boot2 --- blflash/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blflash/src/main.rs b/blflash/src/main.rs index 6beffd3..791b584 100644 --- a/blflash/src/main.rs +++ b/blflash/src/main.rs @@ -38,7 +38,7 @@ struct Boot2Opt { /// Path to efuse_bootheader_cfg.conf #[structopt(parse(from_os_str))] boot_header_cfg: Option, - /// With boot2 + /// Without boot2 #[structopt(short, long)] without_boot2: bool, }