Improve clarity of help messages

pull/6/head
sgoudham 3 years ago
parent 4ab38abfc2
commit 54ccec446f
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -18,7 +18,7 @@ macro_rules! app {
) )
.arg( .arg(
Arg::new("text") Arg::new("text")
.help("Text to uwu'ify") .help("The text to uwu'ify")
.short('t') .short('t')
.long("text") .long("text")
.value_name("TEXT") .value_name("TEXT")
@ -47,20 +47,20 @@ macro_rules! app {
) )
.arg( .arg(
Arg::new("ascii-only") 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") .long("ascii-only")
.conflicts_with("unicode-only") .conflicts_with("unicode-only")
.display_order(4), .display_order(4),
) )
.arg( .arg(
Arg::new("unicode-only") 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") .long("unicode-only")
.display_order(5), .display_order(5),
) )
.arg( .arg(
Arg::new("random") Arg::new("random")
.help("Flag to enable/disable random uwu'ifying") .help("The flag to enable randomized uwu'ified text")
.short('r') .short('r')
.long("random") .long("random")
.display_order(6), .display_order(6),

Loading…
Cancel
Save