From b31c218773a72e6aecd63d0780630674923d6288 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 15 Jun 2013 19:31:17 +0200 Subject: [PATCH] fixed typo, thanks XhmikosR for pointing it out --- lib/checkother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index d02c9ec80..12be4b448 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -1914,7 +1914,7 @@ void CheckOther::commaSeparatedReturnError(const Token *tok) " return a + 1,\n" " b++;\n" "However it can be useful to use comma in macros. Cppcheck does not warn when such a " - "macro is then used in a return statement, It is less likely such code is misunderstood."); + "macro is then used in a return statement, it is less likely such code is misunderstood."); } //---------------------------------------------------------------------------