aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/objc-properties.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Analysis/objc-properties.m')
-rw-r--r--test/Analysis/objc-properties.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Analysis/objc-properties.m b/test/Analysis/objc-properties.m
index 323f41af54ce..f6ed3e5ef043 100644
--- a/test/Analysis/objc-properties.m
+++ b/test/Analysis/objc-properties.m
@@ -23,8 +23,8 @@ typedef signed char BOOL;
@property (assign, nonatomic) MyClass* Y; // automatically synthesized, implemented
- @property (assign, nonatomic) MyClass* Z; // non synthesized ivar, implemented setter
- @property (readonly) id nonSynth; // non synthesized, explicitly implemented to return ivar with expected name
+ @property (assign, nonatomic) MyClass* Z; // non-synthesized ivar, implemented setter
+ @property (readonly) id nonSynth; // non-synthesized, explicitly implemented to return ivar with expected name
- (id) initWithPtr:(MyClass*) value;
- (id) myInitWithPtr:(MyClass*) value;