From 2c8773ff5c36eb53c1e492d73da787c08b20e7ba Mon Sep 17 00:00:00 2001 From: 409 Date: Wed, 22 May 2024 00:48:09 +0200 Subject: [PATCH] fix: incorrect argument help texts --- src/arguments.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/arguments.rs b/src/arguments.rs index 806882f..d407fb7 100644 --- a/src/arguments.rs +++ b/src/arguments.rs @@ -11,12 +11,12 @@ pub struct Arguments { #[arg(long, help = "The default font color", default_value_t = String::from(FONT_COLOR))] pub font_color: String, - #[arg(long, help = "The font color of the selected element", default_value_t = String::from(FONT_COLOR_ACTIVE))] + #[arg(long, help = "The font color of the active item", default_value_t = String::from(FONT_COLOR_ACTIVE))] pub font_color_active: String, - #[arg(long, help = "The default font color", default_value_t = String::from(BACKGROUND_COLOR))] + #[arg(long, help = "The default background color", default_value_t = String::from(BACKGROUND_COLOR))] pub background_color: String, - #[arg(long, help = "The font color of the selected element", default_value_t = String::from(BACKGROUND_COLOR_ACTIVE))] + #[arg(long, help = "The background color of the active item", default_value_t = String::from(BACKGROUND_COLOR_ACTIVE))] pub background_color_active: String, }