diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-03-04 21:59:56 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-03-04 21:59:56 -0500 |
commit | 3c43025980f20d5d6cddad44a1f12e35a549ca16 (patch) | |
tree | 7be830166b95fb5109a63abb003e2f344bc6c62c | |
parent | 2aaa4a65710e4f5b293d3682e09c02b70cd295ed (diff) | |
download | titler-3c43025980f20d5d6cddad44a1f12e35a549ca16.tar.xz titler-3c43025980f20d5d6cddad44a1f12e35a549ca16.zip |
clarify ignorables
-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] = &[ |