diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-10-01 17:31:50 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-10-01 17:31:50 +0000 |
commit | bb206fdd9d4465fee4336e6a12d7e936add17389 (patch) | |
tree | bd7545d3510d4338bcd2b5f90bf2eb1e0f434f14 /lib/Analysis/CFRefCount.cpp | |
parent | f759df06d997050559fd925758bcd2cdef24db05 (diff) |
Fix bad grammar in static analyzer diagnostic. Reported by Robert Purves!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83204 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index 75bd25cf5b..755819197e 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -2054,8 +2054,8 @@ namespace { BadRelease(CFRefCount* tf) : CFRefBug(tf, "Bad release") {} const char* getDescription() const { - return "Incorrect decrement of the reference count of an " - "object is not owned at this point by the caller"; + return "Incorrect decrement of the reference count of an object that is " + "not owned at this point by the caller"; } }; |