Skip to content

Commit 09fa560

Browse files
author
Douglas Blaalid
committed
Fix curly brace
The property declarations do not go in the braces of a class extension. They lie in-between the interface and it's ending declaration.
1 parent 0b68a72 commit 09fa560

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,10 +463,10 @@ static NSString *const kRPShortDateFormat = @"MM/dd/yyyy";
463463
@interface MyClass ()
464464
{
465465
int somePrivateInt;
466-
467-
// Re-declare as a private read-write version of the public read-only property
468-
@property (readwrite, nonatomic, strong) SomeClass *someProperty;
469466
}
467+
// Re-declare as a private read-write version of the public read-only property
468+
@property (readwrite, nonatomic, strong) SomeClass *someProperty;
469+
470470
@end
471471
472472
@implementation MyClass

0 commit comments

Comments
 (0)