Skip to content

Commit e9ce91b

Browse files
committed
Added braces around if statement in Golden Path section.
1 parent 1051a45 commit e9ce91b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,10 @@ When coding with conditionals, the left hand margin of the code should be the "g
596596
597597
```objc
598598
- (void)someMethod {
599-
if (![someOther boolValue]) return;
599+
if (![someOther boolValue]) {
600+
return;
601+
}
602+
600603
//Do something important
601604
}
602605
```

0 commit comments

Comments
 (0)