mirror of
https://github.com/curl/curl.git
synced 2026-08-24 13:03:35 +03:00
badwords: fix issues found in scripts and other files
Single pass, not enforced. Also: - pyspelling.words: drop `web page` Closes #19572
This commit is contained in:
parent
42c43f695c
commit
ad35ecba97
45 changed files with 104 additions and 105 deletions
|
|
@ -182,7 +182,7 @@ for my $w (sort keys %avail) {
|
|||
}
|
||||
}
|
||||
|
||||
print "Never ENABLED configure options that aren't on by default\n";
|
||||
print "Never ENABLED configure options that are not on by default\n";
|
||||
for my $w (sort keys %avail) {
|
||||
if(!$with{$w} && !$defaulton{$w}) {
|
||||
printf " %s\n", $w;
|
||||
|
|
@ -190,7 +190,7 @@ for my $w (sort keys %avail) {
|
|||
}
|
||||
|
||||
|
||||
print "ENABLED configure options that aren't available\n";
|
||||
print "ENABLED configure options that are not available\n";
|
||||
for my $w (sort keys %with) {
|
||||
if(!$avail{$w}) {
|
||||
printf " %s\n", $w;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue