Update basic diagnostic capitalization/punctuation (#4328)

This is a primarily automated change:

- Search & replace for capitalization
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s")([A-Z])`
    - `$1\L$2`
- Search & replace for period
-
`(CARBON_DIAGNOSTIC\((?:\n\s+)?\w+,(?:\n\s+)?\s\w+,(?:\n\s+)?\s"(?:[^)]|\n)+)\.("[,)])`
    - `$1$2`
- Limited search & replace for `ERROR: ` -> `error: ` in streamed things
- Leaving a TODO for command_line because there's more cleanup that can
be done there
- Modify diagnostic_consumer.cpp
    - ERROR -> error
    - WARNING -> warning

---------

Co-authored-by: Richard Smith <richard@metafoo.co.uk>
This commit is contained in:
Jon Ross-Perkins
2024-09-19 21:32:53 +00:00
committed by GitHub
co-authored by Richard Smith
parent 7f6d684b29
commit e7aebbe581
578 changed files with 2166 additions and 2173 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ auto HandleArrayExprSemi(Context& context) -> void {
auto semi = context.ConsumeIf(Lex::TokenKind::Semi);
if (!semi) {
context.AddNode(NodeKind::ArrayExprSemi, *context.position(), true);
CARBON_DIAGNOSTIC(ExpectedArraySemi, Error, "Expected `;` in array type.");
CARBON_DIAGNOSTIC(ExpectedArraySemi, Error, "expected `;` in array type");
context.emitter().Emit(*context.position(), ExpectedArraySemi);
state.has_error = true;
} else {