summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/dealloc.m
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-12-18 00:52:54 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-12-18 00:52:54 +0000
commit0e19df9495556553be026e8c0499ea2b67dc5ba6 (patch)
treec698764ad7b33b74bc67e6134ed074b12d2c6780 /test/SemaObjC/dealloc.m
parenta11a957a03d2d3cd16470599a4a05413816efa25 (diff)
ObjectiveC. typo fix in my last patch,
per Jordan's review. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197540 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjC/dealloc.m')
-rw-r--r--test/SemaObjC/dealloc.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/dealloc.m b/test/SemaObjC/dealloc.m
index 4e61424e68..a5d34e1f52 100644
--- a/test/SemaObjC/dealloc.m
+++ b/test/SemaObjC/dealloc.m
@@ -35,7 +35,7 @@
- (void)dealloc;
@end
-@implementation Subclass (CAT) // expected-note {{declared here}}
-- (void)dealloc { // expected-warning {{decalloc is being overridden in category}}
+@implementation Subclass (CAT)
+- (void)dealloc { // expected-warning {{-dealloc in a category is being overridden}}
}
@end