From c82b1b3d73abd49dd192e0db2fa60f4cd7d36a2b Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Mon, 26 Jul 2021 17:10:28 +0800 Subject: [PATCH] lintdb: Fix option name line-width --- cmakelang/lint/lintdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmakelang/lint/lintdb.py b/cmakelang/lint/lintdb.py index 53d24d2..2b9bb1d 100644 --- a/cmakelang/lint/lintdb.py +++ b/cmakelang/lint/lintdb.py @@ -113,7 +113,7 @@ def get_database(): }), ( "C0301", "Line too long ({:d}/{:d})", { "description": """\ -Used when a line is longer than the limit specified in the line-length +Used when a line is longer than the limit specified in the line-width option. """, "explain": """\ @@ -121,7 +121,7 @@ def get_database(): wrapping past the edge of an editing window. This improves readability and tempers other developers' irritability! -The default value of the line-length option is 80, the customary width of a +The default value of the line-width option is 80, the customary width of a terminal window. Note that the line length and the limit are counted in characters, not in Bytes