Skip to content

Commit

Permalink
Merge pull request kodecocodes#2 from gregheo/gregheo-colons1
Browse files Browse the repository at this point in the history
Colons and spacing.
  • Loading branch information
ndubbs committed Nov 9, 2013
2 parents ad0d546 + 0e65934 commit 98ce917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Property definitions should be used in place of naked instance variables wheneve
**Good:**

```objc
@interface RWTutorial: NSObject
@interface RWTutorial : NSObject

@property (nonatomic) NSString *tutorialName;

Expand Down Expand Up @@ -257,7 +257,7 @@ UIApplication.sharedApplication.delegate;
```objc
NSArray *names = @[@"Brian", @"Matt", @"Chris", @"Alex", @"Steve", @"Paul"];
NSDictionary *productManagers = @{@"iPhone" : @"Kate", @"iPad" : @"Kamal", @"Mobile Web" : @"Bill"};
NSDictionary *productManagers = @{@"iPhone": @"Kate", @"iPad": @"Kamal", @"Mobile Web": @"Bill"};
NSNumber *shouldUseLiterals = @YES;
NSNumber *buildingZIPCode = @10018;
```
Expand Down

0 comments on commit 98ce917

Please sign in to comment.