Skip to content

Commit 3497d50

Browse files
committed
Issue kodecocodes#26 - Added language section.
1 parent c0cd9be commit 3497d50

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Here are some of the documents from Apple that informed the style guide. If some
2323

2424
## Table of Contents
2525

26-
- [Code Organization](#code-organization)
26+
* [Language](#language)
27+
* [Code Organization](#code-organization)
2728
* [Spacing](#spacing)
2829
* [Comments](#comments)
2930
* [Naming](#naming)
@@ -47,6 +48,21 @@ Here are some of the documents from Apple that informed the style guide. If some
4748
* [Xcode Project](#xcode-project)
4849

4950

51+
## Language
52+
53+
US English should be used.
54+
55+
Preferred:
56+
```objc
57+
UIColor *myColor = [UIColor whiteColor];
58+
```
59+
60+
Not Preferred:
61+
```objc
62+
UIColor *myColour = [UIColor whiteColor];
63+
```
64+
65+
5066
## Code Organization
5167

5268
* use `#pragma mark -` to categorize methods in functional groupings and protocol/delegate implementations following this general structure.

0 commit comments

Comments
 (0)