Fixed a typo. There are no functional changes intended.

This commit is contained in:
orbitcowboy 2018-10-08 13:58:21 +02:00
parent c3e6e7c338
commit c312bbad78
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ void ErrorLogger::ErrorMessage::setmsg(const std::string &msg)
// it will cause the mVerboseMessage to be empty which will show // it will cause the mVerboseMessage to be empty which will show
// as an empty message to the user if --verbose is used. // as an empty message to the user if --verbose is used.
// Even this doesn't cause problems with messages that have multiple // Even this doesn't cause problems with messages that have multiple
// lines, none of the the error messages should end into it. // lines, none of the error messages should end into it.
assert(!endsWith(msg,'\n')); assert(!endsWith(msg,'\n'));
// The summary and verbose message are separated by a newline // The summary and verbose message are separated by a newline