Fix typo causing misinformation

This commit is contained in:
Tom Willemse 2014-03-16 13:05:34 +01:00
parent 06abe8cbc7
commit 87ab1f104d

View file

@ -26,7 +26,7 @@ while (<$commitfile>) {
} }
err "Should be empty" if $lineno == 2 && /.+/; err "Should be empty" if $lineno == 2 && /.+/;
err "Longer than 80 characters" if /^.{73,}/; err "Longer than 72 characters" if /^.{73,}/;
} }
close $commitfile; close $commitfile;