From d2bc1f6ff4a2d4bdafd1df2f93f4f756475f3eb1 Mon Sep 17 00:00:00 2001 From: Martin Frost Date: Tue, 24 May 2022 15:05:28 +0200 Subject: [PATCH] Fix typo in git-mob when author doesn't exist --- src/bin/git-mob.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }