Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,20 +121,20 @@ Use `#pragma mark -` to categorize methods in functional groupings and protocol/
**Preferred:**
```objc
if (user.isHappy) {
//Do something
// Do something
} else {
//Do something else
// Do something else
}
```

**Not Preferred:**
```objc
if (user.isHappy)
{
//Do something
// Do something
}
else {
//Do something else
// Do something else
}
```

Expand Down Expand Up @@ -631,7 +631,7 @@ When coding with conditionals, the left hand margin of the code should be the "g
return;
}

//Do something important
// Do something important
}
```

Expand All @@ -640,7 +640,7 @@ When coding with conditionals, the left hand margin of the code should be the "g
```objc
- (void)someMethod {
if ([someOther boolValue]) {
//Do something important
// Do something important
}
}
```
Expand Down