From: Gabriel Marin Date: Thu, 19 Sep 2024 14:47:22 +0000 (+0300) Subject: checksrc: fixed typo X-Git-Tag: curl-8_11_0~362 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4703dac13049fb1453bad069ab3d64572a28c02;p=thirdparty%2Fcurl.git checksrc: fixed typo Closes #14968 --- diff --git a/scripts/checksrc.pl b/scripts/checksrc.pl index 7889f4ced7..a391edef76 100755 --- a/scripts/checksrc.pl +++ b/scripts/checksrc.pl @@ -82,7 +82,7 @@ my %warnings = ( 'MULTISPACE' => 'multiple spaces used when not suitable', 'NOSPACEEQUALS' => 'equals sign without preceding space', 'NOSPACEQ' => 'missing space around ternary question mark operator', - 'NOSPACETHAN' => 'missing space aground less or greater than', + 'NOSPACETHAN' => 'missing space around less or greater than', 'NOTEQUALSZERO', => 'if/while comparison with != 0', 'ONELINECONDITION' => 'conditional block on the same line as the if()', 'OPENCOMMENT' => 'file ended with a /* comment still "open"',