Skip to content

Commit

Permalink
Made a message shorter to appease clang-format.
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertCreativityHere authored Nov 12, 2024
1 parent 88e52b8 commit 756a313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/Slice/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ Slice::Contained::parseComment(function<string(string, string)> 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;
}
Expand Down

0 comments on commit 756a313

Please sign in to comment.