Fix typo in git-mob when author doesn't exist

This commit is contained in:
Martin Frost 2022-05-24 15:05:28 +02:00
parent 0859cf6b11
commit d2bc1f6ff4
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ fn select_coauthors(coauthor_initials: &[String]) -> Vec<Author> {
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);
}
}