fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51479 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Parser/objc-try-catch-1.m b/test/Parser/objc-try-catch-1.m
index ef4b943..072c460 100644
--- a/test/Parser/objc-try-catch-1.m
+++ b/test/Parser/objc-try-catch-1.m
@@ -34,7 +34,7 @@
}
}
- @try { // expected-error {{@try statment without a @catch and @finally clause}}
+ @try { // expected-error {{@try statement without a @catch and @finally clause}}
return proc();
}
}
@@ -42,13 +42,13 @@
void bar()
{
- @try {}// expected-error {{@try statment without a @catch and @finally clause}}
+ @try {}// expected-error {{@try statement without a @catch and @finally clause}}
@"s"; // expected-warning {{result unused}}
}
void baz()
{
- @try {}// expected-error {{@try statment without a @catch and @finally clause}}
+ @try {}// expected-error {{@try statement without a @catch and @finally clause}}
@try {}
@finally {}
}