From 2250a2dfc350f2b7ce65afe3588b4a6b43538e1c Mon Sep 17 00:00:00 2001 From: Robert Reif Date: Mon, 5 Sep 2011 09:04:27 -0400 Subject: [PATCH] fix #3079 (Spelling error in unsigned variable check 'never alwayw') --- lib/checkother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 3b52f916a..f98f8ba60 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -2554,6 +2554,6 @@ void CheckOther::unsignedPositiveError(const Token *tok, const std::string &varn { reportError(tok, Severity::style, "unsignedPositive", "Checking if unsigned variable '" + varname + "' is positive is always true.\n" - "An unsigned variable will never alwayw be positive so it is either pointless or " + "An unsigned variable will never be positive so it is either pointless or " "an error to check if it is."); }