Subject: | Typo in changelog regexp |
In Module/CPANTS/Kwalitee/Files.pm, the changelog regexp has a trivial
error. The code is:
# find more complex files
my %regexs=(
file_changelog=>qr{^chang(es?|log)|history}i,
);
This should be either
change(s?|log)|history
or
change|history
or even
chang|history
Currently it matches "ChangeLog" through /changes?/ which works, but is odd.