misc: remove duplicate words

Closes #11740
This commit is contained in:
John Bampton 2023-08-26 22:08:10 +10:00 committed by Daniel Stenberg
parent 67890d6951
commit 7378f9cc32
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 3 additions and 3 deletions

View file

@ -53,7 +53,7 @@ $ncommitters = $acommitters - $bcommitters;
# number of contributors right now
$acontribs = `./scripts/contrithanks.sh | grep -c '^[^ ]'`;
# number when the tag tag was set
# number when the tag was set
$bcontribs = `git show $start:docs/THANKS | grep -c '^[^ ]'`;
# delta
$contribs = $acontribs - $bcontribs;