diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-08-06 05:01:36 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-08-06 05:01:36 +0000 |
commit | 355a692172022af7cd8935d025d096528a12340c (patch) | |
tree | 909964b4c5910bf2cfcfbaa6466cacddf705d577 /lib/Analysis/CheckNSError.cpp | |
parent | 451ac091cd1868433985396a25cbbf2092ae8ca9 (diff) |
Fix typo reported in <rdar://problem/7121409>.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78285 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CheckNSError.cpp')
-rw-r--r-- | lib/Analysis/CheckNSError.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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**" |