]> granicus.if.org Git - clang/commitdiff
fix typo
authorGabor Greif <ggreif@gmail.com>
Fri, 23 May 2008 11:19:39 +0000 (11:19 +0000)
committerGabor Greif <ggreif@gmail.com>
Fri, 23 May 2008 11:19:39 +0000 (11:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51479 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticKinds.def
test/Parser/objc-try-catch-1.m

index 1eb36e4b51f37651a500538de238623a9fc94c25..beea258482b6e1ee58825f8d6a11f024fbf67d3c 100644 (file)
@@ -412,7 +412,7 @@ DIAG(err_objc_protocol_required, ERROR,
 DIAG(err_objc_protocol_optional, ERROR,
      "@optional may be specified in protocols only")
 DIAG(err_missing_catch_finally, ERROR,
-     "@try statment without a @catch and @finally clause")
+     "@try statement without a @catch and @finally clause")
 DIAG(err_objc_concat_string, ERROR,
      "unexpected token after Objective-C string")
 DIAG(err_undef_superclass, ERROR,
index ef4b94348d0d21f86d8abaaf06fa304a665e39a1..072c4609eb2aa73a3590d269af37934400637c64 100644 (file)
@@ -34,7 +34,7 @@ void * foo()
     }
   }
 
-  @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 * foo()
 
 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 {}
 }