From 756a31394f8daa633ffc5b3126b32c87d384ebfc Mon Sep 17 00:00:00 2001 From: Austin Henriksen Date: Tue, 12 Nov 2024 14:10:20 -0500 Subject: [PATCH] Made a message shorter to appease clang-format. --- cpp/src/Slice/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp index e98c02ca73e..e48dbf40750 100644 --- a/cpp/src/Slice/Parser.cpp +++ b/cpp/src/Slice/Parser.cpp @@ -898,7 +898,7 @@ Slice::Contained::parseComment(function linkFormatter, b { // This isn't allowed - '@see' tags cannot span multiple lines. We've already kept the original // line by this point, but we ignore any lines that follow it (until hitting another '@' tag). - string msg = "'@see' comment tags cannot span multiple lines and can only be of the form: '@see identifier'"; + string msg = "'@see' tags cannot span multiple lines and must be of the form: '@see identifier'"; unit()->warning(file(), line(), InvalidComment, msg); break; }