From: Fariborz Jahanian Date: Fri, 12 Jul 2013 16:41:56 +0000 (+0000) Subject: fixes a typo caught by Jordan. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c131046bb8724afcbc8649c123683d12cfb5015f;p=clang fixes a typo caught by Jordan. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186171 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 527a647701..ed13347418 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -5435,7 +5435,7 @@ void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string& S, // {...}; S += '^'; if (FD && OPT->getInterfaceDecl()) { - // Prevent redursive encoding of fields in some rare cases. + // Prevent recursive encoding of fields in some rare cases. ObjCInterfaceDecl *OI = OPT->getInterfaceDecl(); SmallVector Ivars; DeepCollectObjCIvars(OI, true, Ivars);