Fix the message. Thanks to Thomas Clement for noticing.

llvm-svn: 124680
diff --git a/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
index fb8ddb0..ff1e5dd 100644
--- a/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
@@ -221,7 +221,7 @@
     return;
 
   checkForInvalidSelf(S->getRetValue(), C,
-    "Returning 'self' while it is not set it to the result of "
+    "Returning 'self' while it is not set to the result of "
                                                  "'[(super or self) init...]'");
 }