From bc01f62df36645b6d9f1622303d3ed454b640cc4 Mon Sep 17 00:00:00 2001 From: richie Date: Wed, 6 Jan 2021 00:20:19 -0800 Subject: [PATCH] Add an example to the words CLI argument --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index de9af9e..ce47059 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -9,7 +9,7 @@ pub struct Cli { pub max_number: u32, #[structopt( - help = "The words to replace the number with when it is a multiple of a number, formatted as a space-separated list of ':'. The order of the words specified in the arguments will be the order the words are placed if a number is qualified for more than one word." + help = "The words to replace the number with when it is a multiple of a number, formatted as a space-separated list of ':'. The order of the words specified in the arguments will be the order the words are placed if a number is qualified for more than one word. Example: '3:fizz 5:buzz'" )] pub words: Vec, }