From 5d7ed18c50ae89807bf9b9b786495c773dfcfd90 Mon Sep 17 00:00:00 2001 From: Nate Eagleson Date: Sun, 28 May 2023 22:25:08 -0400 Subject: [PATCH] Fix comment typo in git-authors (#1050) --- bin/git-authors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-authors b/bin/git-authors index d1ef7b2..a9ef292 100755 --- a/bin/git-authors +++ b/bin/git-authors @@ -36,7 +36,7 @@ fi authors() { if $NO_EMAIL; then - # eamil will be used to uniq authors. + # email will be used to uniq authors. git shortlog -sne | awk '{$1=""; sub(" ", ""); print}' | awk -F'<' '!x[$1]++' | awk -F'<' '!x[$2]++' \ | awk -F'<' '{gsub(/ +$/, "", $1); print $1}' else