From: Ikko Ashimine Date: Sat, 15 Jan 2022 06:56:27 +0000 (+0900) Subject: checksrc: fix typo in comment X-Git-Tag: curl-7_82_0~210 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7053c9138f3193825342b4564666b6cf48576b3b;p=thirdparty%2Fcurl.git checksrc: fix typo in comment enfore -> enforce Closes #8281 --- diff --git a/lib/checksrc.pl b/lib/checksrc.pl index eea1126d1c..0f1107d480 100755 --- a/lib/checksrc.pl +++ b/lib/checksrc.pl @@ -827,7 +827,7 @@ sub scanfile { # A rather more interesting, and correct, check would be to not test # only locally committed files but inspect all files wrt the year of # their last commit. Removing the `git rev-list origin/master..HEAD` - # condition below will enfore copyright year checks against the year + # condition below will enforce copyright year checks against the year # the file was last committed (and thus edited to some degree). my $commityear = undef; @copyright = sort {$$b{year} cmp $$a{year}} @copyright;