all: fix codespell errors

Reviewed-by: Jay Satiro
Reviewed-by: Daniel Stenberg
Closes https://github.com/curl/curl/pull/5452
This commit is contained in:
Viktor Szakats 2020-05-25 19:44:04 +00:00
parent 54d122287c
commit 308c243db5
No known key found for this signature in database
GPG key ID: 9C01E9B68B91DE4D
22 changed files with 31 additions and 31 deletions

View file

@ -33,8 +33,8 @@ my @whitelist=(
'^docs\/cmdline-opts\/[a-z]+(.*)\.d$', # curl.1 pieces
'(\/|^)[A-Z0-9_.-]+$', # all uppercase file name, possibly with dot and dash
'(\/|^)[A-Z0-9_-]+\.md$', # all uppercase file name with .md extension
'.gitignore', # whereever they are
'.gitattributes', # whereever they are
'.gitignore', # wherever they are
'.gitattributes', # wherever they are
'^tests/certs/.*', # generated certs
'^tests/stunnel.pem', # generated cert
'^tests/valgrind.supp', # valgrind suppressions

View file

@ -65,7 +65,7 @@ for my $l (@releasenotes) {
$refused[$1]=1;
}
elsif($l =~ /^ \[(\d+)\] = (.*)/) {
# listed in a refernce, set bit 1
# listed in a reference, set bit 1
$refused[$1] |= 2;
$refs[$1] = $2;
}