aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2010-08-12 22:33:42 +0000
committerFariborz Jahanian <fjahanian@apple.com>2010-08-12 22:33:42 +0000
commit80a785c2452c73b7c41d4a867edcf5a090c78c46 (patch)
tree52c88439f16e16ff2986548f9009d433ae5bf5b3
parentea16110ce3a4fbb205735f0a55050bc11292e82c (diff)
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110965 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Sema/SemaStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaStmt.cpp b/lib/Sema/SemaStmt.cpp
index 73e142c782..ef1446a6ec 100644
--- a/lib/Sema/SemaStmt.cpp
+++ b/lib/Sema/SemaStmt.cpp
@@ -955,7 +955,7 @@ Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
if (ObjCInterfaceDecl *IDecl = OPT->getInterfaceDecl()) {
if (!IDecl->isForwardDecl() &&
!IDecl->lookupInstanceMethod(CSelector)) {
- // Must further look into privaye implementation methods.
+ // Must further look into private implementation methods.
if (!LookupPrivateInstanceMethod(CSelector, IDecl))
Diag(ForLoc, diag::warn_collection_expr_type)
<< SecondType << CSelector << Second->getSourceRange();