Skip to content

Commit a85b8b7

Browse files
gemmakbarlowrayfix
authored andcommitted
Minor typo corrections (kodecocodes#177)
* Removed extra 'and' * Change to plural 'parentheses' * Changed 'parenthesis' to 'parentheses'
1 parent 605dc9d commit a85b8b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Writing Objective-C? Check out our [Objective-C Style Guide](https://github.com/
4646
* [Golden Path](#golden-path)
4747
* [Failing Guards](#failing-guards)
4848
* [Semicolons](#semicolons)
49-
* [Parenthesis](#parenthesis)
49+
* [Parentheses](#parentheses)
5050
* [Copyright Statement](#copyright-statement)
5151
* [Smiley Face](#smiley-face)
5252
* [Credits](#credits)
@@ -82,7 +82,7 @@ class app_widgetContainer {
8282
}
8383
```
8484

85-
Abbreviations and and acronyms should generally be avoided. Following the Apple Design Guidelines, abbreviations and initialisms that appear in all uppercase should be uniformly uppercase or lowercase. Examples:
85+
Abbreviations and acronyms should generally be avoided. Following the Apple Design Guidelines, abbreviations and initialisms that appear in all uppercase should be uniformly uppercase or lowercase. Examples:
8686

8787
**Preferred**
8888
```swift
@@ -920,9 +920,9 @@ let swift = "not a scripting language";
920920

921921
**NOTE**: Swift is very different to JavaScript, where omitting semicolons is [generally considered unsafe](http://stackoverflow.com/questions/444080/do-you-recommend-using-semicolons-after-every-statement-in-javascript)
922922

923-
## Parenthesis
923+
## Parentheses
924924

925-
Parenthesis around conditionals are not required and should be omitted.
925+
Parentheses around conditionals are not required and should be omitted.
926926

927927
**Preferred:**
928928
```swift

0 commit comments

Comments
 (0)