diff options
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c9f03c3..0c994ef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,7 +2,8 @@ use std::collections::HashSet; use std::env::args; use std::io::{stdin, BufRead, BufReader}; -const HELP_MSG: &str = "Title-Case Tool.\n-i | --ignore [word...]\tIgnores a list of words that should not be altered."; +const HELP_MSG: &str = + "Title-Case Tool\n-i | --ignore [word...]\tA list of words that should not be corrected."; /// Words that will not be capitalized unless they are at the start or end of a title. const EXCEPTIONS: &[&str] = &[ |