Fix typo in git-mob when author doesn't exist
This commit is contained in:
parent
0859cf6b11
commit
d2bc1f6ff4
|
|
@ -82,7 +82,7 @@ fn select_coauthors(coauthor_initials: &[String]) -> Vec<Author> {
|
||||||
match all_coauthors.get(initial) {
|
match all_coauthors.get(initial) {
|
||||||
Some(coauthor) => coauthors.push(coauthor.clone()),
|
Some(coauthor) => coauthors.push(coauthor.clone()),
|
||||||
None => {
|
None => {
|
||||||
eprintln!("Error: atuhor with initials {} not found", initial);
|
eprintln!("Error: author with initials {} not found", initial);
|
||||||
process::exit(1);
|
process::exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue