From: Ted Kremenek Date: Thu, 6 Aug 2009 05:01:36 +0000 (+0000) Subject: Fix typo reported in . X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=355a692172022af7cd8935d025d096528a12340c;p=clang Fix typo reported in . git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78285 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CheckNSError.cpp b/lib/Analysis/CheckNSError.cpp index 4e8ba01e3e..0d67e01609 100644 --- a/lib/Analysis/CheckNSError.cpp +++ b/lib/Analysis/CheckNSError.cpp @@ -111,7 +111,7 @@ void NSErrorCheck::EmitRetTyWarning(BugReporter& BR, Decl& CodeDecl) { os << " accepting "; os << (isNSErrorWarning ? "NSError**" : "CFErrorRef*"); os << " should have a non-void return value to indicate whether or not an " - "error occured."; + "error occurred"; BR.EmitBasicReport(isNSErrorWarning ? "Bad return type when passing NSError**"