]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
checksrc: fix typo in comment
authorIkko Ashimine <eltociear@gmail.com>
Sat, 15 Jan 2022 06:56:27 +0000 (15:56 +0900)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 15 Jan 2022 16:23:46 +0000 (17:23 +0100)
enfore -> enforce

Closes #8281

lib/checksrc.pl

index eea1126d1cf7169ecd02da3b6e9199edd06a4efc..0f1107d4804ffdcccc7cb5b31f6f61824326ad70 100755 (executable)
@@ -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;