]> granicus.if.org Git - clang/commitdiff
Fix a typo.
authorBob Wilson <bob.wilson@apple.com>
Thu, 21 Mar 2013 06:09:09 +0000 (06:09 +0000)
committerBob Wilson <bob.wilson@apple.com>
Thu, 21 Mar 2013 06:09:09 +0000 (06:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177626 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticGroups.td
include/clang/Basic/DiagnosticSemaKinds.td

index 4ddf2077e7f264d2213d610bb85ee95506d45755..0ff046090317f7ca12599dcf3068cd4bab7f1162 100644 (file)
@@ -494,7 +494,7 @@ def ObjCNonUnifiedException : DiagGroup<"objc-nonunified-exceptions">;
 
 def ObjCProtocolMethodImpl : DiagGroup<"objc-protocol-method-implementation">;
 
-def ObjCNoPropertyAuthoSynthesis : DiagGroup<"objc-property-synthesis">;
+def ObjCNoPropertyAutoSynthesis : DiagGroup<"objc-property-synthesis">;
 
 // ObjC API warning groups.
 def ObjCRedundantLiteralUse : DiagGroup<"objc-redundant-literal-use">;
index 93f0697a56e0295ebb3b331351a2069495442c62..3c067cdedd04d20c558a2a1ed6e2ab8e8ea03d1f 100644 (file)
@@ -672,12 +672,12 @@ def warn_auto_synthesizing_protocol_property :Warning<
 def warn_no_autosynthesis_shared_ivar_property : Warning <
   "auto property synthesis will not synthesize property "
   "'%0' because it cannot share an ivar with another synthesized property">,
-  InGroup<ObjCNoPropertyAuthoSynthesis>;
+  InGroup<ObjCNoPropertyAutoSynthesis>;
 def warn_no_autosynthesis_property : Warning<
   "auto property synthesis will not synthesize property "
   "'%0' because it is 'readwrite' but it will be synthesized 'readonly' "
   "via another property">,
-  InGroup<ObjCNoPropertyAuthoSynthesis>;
+  InGroup<ObjCNoPropertyAutoSynthesis>;
 def warn_autosynthesis_property_ivar_match :Warning<
   "autosynthesized property %0 will use %select{|synthesized}1 instance variable "
   "%2, not existing instance variable %3">,