From 54ccec446ffb909337ebcfeb2b50a433f6e1f057 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 5 Feb 2022 00:08:23 +0000 Subject: [PATCH] Improve clarity of help messages --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 1cdae9e..9dd46f4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,7 +18,7 @@ macro_rules! app { ) .arg( Arg::new("text") - .help("Text to uwu'ify") + .help("The text to uwu'ify") .short('t') .long("text") .value_name("TEXT") @@ -47,20 +47,20 @@ macro_rules! app { ) .arg( Arg::new("ascii-only") - .help("The output file will only include ASCII faces") + .help("The uwu'ified text will only include ASCII faces") .long("ascii-only") .conflicts_with("unicode-only") .display_order(4), ) .arg( Arg::new("unicode-only") - .help("The output file will only include UTF-8 faces") + .help("The uwu'ified text will only include UTF-8 faces") .long("unicode-only") .display_order(5), ) .arg( Arg::new("random") - .help("Flag to enable/disable random uwu'ifying") + .help("The flag to enable randomized uwu'ified text") .short('r') .long("random") .display_order(6),