summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 913bcbb..b060ed1 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -12,7 +12,7 @@ const EXCEPTIONS: &[&str] = &[
/// Here are the rules:
///
-/// - Every line is its own title. No multi-line titles.
+/// - Every line is its own title.
/// - All words are capitalized, except...
/// - Words are not capitalized if they are EXCEPTIONS, unless...
/// - Words are either the first or the last word.
@@ -22,7 +22,6 @@ fn main() {
let mut ignorables = Vec::new();
while let Some(arg) = args.next() {
- dbg!(&arg);
match arg.as_str() {
"--ignore" | "-i" => {
ignorables = args.collect();
@@ -43,7 +42,7 @@ fn main() {
}
}
-/// Capitalizes a single line (title) based on placement and exceptions.
+/// Corrects a single line (title) based on placement and exceptions.
fn correct_line(line: &str, ignorables: &[String]) -> String {
let mut line = line.split_whitespace().peekable();
let mut result = Vec::new();