diff --git a/src/bin/git-mob.rs b/src/bin/git-mob.rs index 6dd632d..2673e4b 100644 --- a/src/bin/git-mob.rs +++ b/src/bin/git-mob.rs @@ -82,7 +82,7 @@ fn select_coauthors(coauthor_initials: &[String]) -> Vec { match all_coauthors.get(initial) { Some(coauthor) => coauthors.push(coauthor.clone()), None => { - eprintln!("Error: atuhor with initials {} not found", initial); + eprintln!("Error: author with initials {} not found", initial); process::exit(1); } }