summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2013-01-16 01:35:57 +0000
committerAnna Zaks <ganna@apple.com>2013-01-16 01:35:57 +0000
commit8a023580c7baa28a692819c3ec9b445aad971fa0 (patch)
treeafc03cfe8798a3562cc04721633edf0cf5539a88 /clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
parent0c34c1a25f61e88e10eeef5a237bae72a724613f (diff)
downloadbcm5719-llvm-8a023580c7baa28a692819c3ec9b445aad971fa0.tar.gz
bcm5719-llvm-8a023580c7baa28a692819c3ec9b445aad971fa0.zip
[analyzer] Fix warning typo.
llvm-svn: 172596
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
index 9d25ce03647..b3bad613010 100644
--- a/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
@@ -411,7 +411,7 @@ void IvarInvalidationChecker::checkASTDecl(const ObjCImplementationDecl *ImplD,
assert(FirstIvarDecl);
printIvar(os, FirstIvarDecl, IvarToPopertyMap);
os << "needs to be invalidated; ";
- os << "No invalidation method is declared for " << InterfaceD->getName();
+ os << "no invalidation method is declared for " << InterfaceD->getName();
PathDiagnosticLocation IvarDecLocation =
PathDiagnosticLocation::createBegin(FirstIvarDecl, BR.getSourceManager());
@@ -475,7 +475,7 @@ void IvarInvalidationChecker::checkASTDecl(const ObjCImplementationDecl *ImplD,
assert(FirstIvarDecl);
printIvar(os, FirstIvarDecl, IvarToPopertyMap);
os << "needs to be invalidated; ";
- os << "No invalidation method is defined in the @implementation for "
+ os << "no invalidation method is defined in the @implementation for "
<< InterfaceD->getName();
PathDiagnosticLocation IvarDecLocation =
OpenPOWER on IntegriCloud