release-notes.pl: manage more "closes" typos

This commit is contained in:
Daniel Stenberg 2025-02-08 10:51:27 +01:00
parent 9f3427b315
commit bb65a52a05
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -137,7 +137,7 @@ for my $l (@gitlog) {
my $ref = extract($2); my $ref = extract($2);
push @fixes, $ref if($ref); push @fixes, $ref if($ref);
} }
elsif($line =~ /^Clo(s|)es(:|) *(.*)/i) { elsif($line =~ /^Cl([os]+)es(:|) *(.*)/i) {
my $ref = extract($3); my $ref = extract($3);
push @closes, $ref if($ref); push @closes, $ref if($ref);
} }