aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-06-29 19:41:45 +0100
committergingerBill <bill@gingerbill.org>2024-06-29 19:41:45 +0100
commit90244a0849afe9f17e011dc8c3bae571c9f5bb26 (patch)
tree3f6bd2ff213ff1735a0dfbe41acdd3f1ba69317e /src/main.cpp
parentf4abdf716eb2a5e3c9937daa4dd68d92c2f84b4b (diff)
Fix accidental deletion in the `-strict-style` help comment
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9b05fab2f..ea82651f5 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2355,7 +2355,7 @@ gb_internal void print_show_help(String const arg0, String const &command) {
print_usage_line(2, "Errs on unneeded tokens, such as unneeded semicolons.");
print_usage_line(2, "Errs on missing trailing commas followed by a newline.");
print_usage_line(2, "Errs on deprecated syntax.");
- print_usage_line(2, "Errs when 'case' labels are not in the same column as the associated 'switch' token.");
+ print_usage_line(2, "Errs when the attached-brace style in not adhered to (also known as 1TBS).");
print_usage_line(2, "Errs when 'case' labels are not in the same column as the associated 'switch' token.");
print_usage_line(2, "Disallows the 'do' keyword in the project (same as '-disallow-do').");
print_usage_line(0, "");