Fix comment typo in git-authors (#1050)

This commit is contained in:
Nate Eagleson 2023-05-28 22:25:08 -04:00 committed by GitHub
parent 2d221c1b67
commit 5d7ed18c50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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