diff options
-rw-r--r-- | lib/Sema/SemaStmt.cpp | 2 |
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(); |