From 0007351ef49b8b511f8ef70917a6b3bad5fc8fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 5 Jul 2011 19:59:58 +0200 Subject: [PATCH] spell check of error message. contant => constant --- lib/checkother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 6a566982b..3fb07ea79 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -872,7 +872,7 @@ void CheckOther::sizeofForNumericParameterError(const Token *tok) reportError(tok, Severity::error, "sizeofwithnumericparameter", "Using sizeof with a numeric constant as function " "argument might not be what you intended.\n" - "It is unusual to use contant value with sizeof. For example, this code:\n" + "It is unusual to use constant value with sizeof. For example, this code:\n" " int f() {\n" " return sizeof(10);\n" " }\n"