aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2013-03-21 06:09:09 +0000
committerBob Wilson <bob.wilson@apple.com>2013-03-21 06:09:09 +0000
commit222b4eacd60bd0a38e3855d885ea13bede22129f (patch)
tree92247e9932061241842c1efa84108bae12850835
parentcdf2808c4e735a717599751dcd2b434f239e1c68 (diff)
Fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177626 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticGroups.td2
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Basic/DiagnosticGroups.td b/include/clang/Basic/DiagnosticGroups.td
index 4ddf2077e7..0ff0460903 100644
--- a/include/clang/Basic/DiagnosticGroups.td
+++ b/include/clang/Basic/DiagnosticGroups.td
@@ -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">;
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index 93f0697a56..3c067cdedd 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -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">,