From 7053c9138f3193825342b4564666b6cf48576b3b Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 15 Jan 2022 15:56:27 +0900 Subject: [PATCH] checksrc: fix typo in comment enfore -> enforce Closes #8281 --- lib/checksrc.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3