[Lldb-commits] [lldb] [lldb] Correct style of error messages (PR #156774)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 4 09:14:08 PDT 2025
================
@@ -418,7 +418,7 @@ other command as far as there is only one alias command match.");
if ((pos != std::string::npos) && (pos > 0))
raw_command_string = raw_command_string.substr(pos);
} else {
- result.AppendError("Error parsing command string. No alias created.");
+ result.AppendError("error parsing command string. No alias created");
----------------
JDevlieghere wrote:
It does, yeah, it even includes an example (which I know you couldn't see because of the infra issue):
> error: file.o: section header 3 is corrupt. Size is 10 when it should be 20
The double spaces is something else we should settle on, but that's a separate discussion...
https://github.com/llvm/llvm-project/pull/156774
More information about the lldb-commits
mailing list