From bddd7350e63886525abc82fa330f26e4f48fdac0 Mon Sep 17 00:00:00 2001 From: Jorik Cronenberg Date: Wed, 4 Oct 2023 18:25:58 +0200 Subject: [PATCH] Better description for path argument --- rust/agama-migrate-wicked/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/agama-migrate-wicked/src/main.rs b/rust/agama-migrate-wicked/src/main.rs index 52a153ce19..81eb00abf3 100644 --- a/rust/agama-migrate-wicked/src/main.rs +++ b/rust/agama-migrate-wicked/src/main.rs @@ -33,12 +33,12 @@ pub enum Commands { #[arg(value_enum, short, long, default_value_t = Format::Json)] format: Format, - /// Where wicked xml configs are located + /// Path to file or directory where the wicked xml config is located path: String, }, /// Migrate wicked state at path Migrate { - /// Where wicked xml configs are located + /// Path to file or directory where the wicked xml config is located path: String, }, }