From 3c43025980f20d5d6cddad44a1f12e35a549ca16 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Thu, 4 Mar 2021 21:59:56 -0500 Subject: clarify ignorables --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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] = &[ -- cgit v1.2.3