aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-03-16 13:05:34 +0100
committerGravatar Tom Willemse2014-03-16 13:05:34 +0100
commit87ab1f104dd4f4b1d4aa885a45a856529917881a (patch)
tree1e3e17c3936c2af60c1daeb43d69f0d9d9a61019
parent06abe8cbc73e43426b1aa983331dde5c36460c0a (diff)
downloadcommit-check-87ab1f104dd4f4b1d4aa885a45a856529917881a.tar.gz
commit-check-87ab1f104dd4f4b1d4aa885a45a856529917881a.zip
Fix typo causing misinformation
-rwxr-xr-xcommit-check2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-check b/commit-check
index 3cfd7c6..ea3e86a 100755
--- a/commit-check
+++ b/commit-check
@@ -26,7 +26,7 @@ while (<$commitfile>) {
}
err "Should be empty" if $lineno == 2 && /.+/;
- err "Longer than 80 characters" if /^.{73,}/;
+ err "Longer than 72 characters" if /^.{73,}/;
}
close $commitfile;