summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2022-01-15 15:56:27 +0900
committerDaniel Stenberg <daniel@haxx.se>2022-01-15 17:23:46 +0100
commit7053c9138f3193825342b4564666b6cf48576b3b (patch)
tree1e8db402c7635edd35f2820c446f574894249135
parent66250c4d515efffa97d28183be1cefcbc789c588 (diff)
downloadcurl-7053c9138f3193825342b4564666b6cf48576b3b.tar.gz
checksrc: fix typo in comment
enfore -> enforce Closes #8281
-rwxr-xr-xlib/checksrc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/checksrc.pl b/lib/checksrc.pl
index eea1126d1..0f1107d48 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;