From e311de959750b420436aae182fa07c557ebb4b84 Mon Sep 17 00:00:00 2001 From: Petr Gadorek Date: Wed, 20 Nov 2024 14:30:05 +0100 Subject: [PATCH] made cli help more understandable --- src/cli_args/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli_args/mod.rs b/src/cli_args/mod.rs index 76295d0..56ef16e 100644 --- a/src/cli_args/mod.rs +++ b/src/cli_args/mod.rs @@ -85,13 +85,13 @@ pub struct Cli { #[arg( short, long, - help = "url for download mirror to use instead of github.com" + help = "URL for tools download mirror to be used instead of github.com" )] pub mirror: Option, #[arg( long, - help = "url for download mirror to use instead of github.com for downloading esp-idf" + help = "URL for ESP-IDF download mirror to be used instead of github.com" )] pub idf_mirror: Option, @@ -125,7 +125,7 @@ pub struct Cli { #[arg( long, - help = "if set, the installer will as it's very last move save the configuration to the specified file path. This file can than be used to repeat the instalation with the same settings." + help = "if set, the installer will as it's very last move save the configuration to the specified file path. This file can than be used to repeat the installation with the same settings." )] pub config_file_save_path: Option, }