summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/dealloc.m
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-12-18 16:51:06 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-12-18 16:51:06 +0000
commit79d1e6ae7fb0aabfb7dbfda958f5c288c8ebff8e (patch)
tree264e6ef8cb2ee14bf7f7ef059bd552add6f08f34 /test/SemaObjC/dealloc.m
parentb99d980b24a4170a825da676199a03f144a0cacb (diff)
ObjectiveC. Fixes the sentence in a diagnostic.
// rdar://15397430 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197586 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjC/dealloc.m')
-rw-r--r--test/SemaObjC/dealloc.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaObjC/dealloc.m b/test/SemaObjC/dealloc.m
index a5d34e1f52..db89b20f5a 100644
--- a/test/SemaObjC/dealloc.m
+++ b/test/SemaObjC/dealloc.m
@@ -36,6 +36,6 @@
@end
@implementation Subclass (CAT)
-- (void)dealloc { // expected-warning {{-dealloc in a category is being overridden}}
+- (void)dealloc { // expected-warning {{-dealloc is being overridden in a category}}
}
@end