From: Gabor Horvath Date: Tue, 25 Aug 2015 16:27:03 +0000 (+0000) Subject: [Static Analyzer] Fixed a typo in a diagnostic message. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c3682de14808a9c18219e2dbf0abd7830bb7125;p=clang [Static Analyzer] Fixed a typo in a diagnostic message. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@245949 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/ObjCGenericsChecker.cpp b/lib/StaticAnalyzer/Checkers/ObjCGenericsChecker.cpp index 937d35408a..a4449a44e6 100644 --- a/lib/StaticAnalyzer/Checkers/ObjCGenericsChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/ObjCGenericsChecker.cpp @@ -128,7 +128,7 @@ PathDiagnosticPiece *ObjCGenericsChecker::GenericsBugVisitor::VisitNode( llvm::raw_svector_ostream OS(Buf); OS << "Type '"; QualType::print(*TrackedType, Qualifiers(), OS, LangOpts, llvm::Twine()); - OS << "' is infered from "; + OS << "' is inferred from "; if (const auto *ExplicitCast = dyn_cast(S)) { OS << "explicit cast (from '";