simple spell checking 'itis' => 'it is'

This commit is contained in:
Daniel Marjamäki 2012-06-23 10:08:18 +02:00
parent 5de82c1c42
commit a15dac9285
1 changed files with 1 additions and 1 deletions

View File

@ -2973,7 +2973,7 @@ void CheckOther::unsignedLessThanZeroError(const Token *tok, const std::string &
} else {
reportError(tok, Severity::style, "unsignedLessThanZero",
"Checking if unsigned variable '" + varname + "' is less than zero.\n"
"The unsigned variable '" + varname + "' will never be negative so it"
"The unsigned variable '" + varname + "' will never be negative so it "
"is either pointless or an error to check if it is.");
}
}