]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
checksrc: fixed typo
authorGabriel Marin <marin.gabriel@protonmail.com>
Thu, 19 Sep 2024 14:47:22 +0000 (17:47 +0300)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 22 Sep 2024 19:23:08 +0000 (21:23 +0200)
Closes #14968

scripts/checksrc.pl

index 7889f4ced7839378b93664a61ed3083fa721a659..a391edef76ef7013866611638152075e2ea77316 100755 (executable)
@@ -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"',