Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 60ae553

Browse files
committed
Merge pull request #57 from tejen/patch-1
Spelling corrections in Return/Break Early section
2 parents fe83c71 + 1403a6c commit 60ae553

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ guard n.isNumber else {
5353
// Use n here
5454
```
5555

56-
You can also do it with `if` statement, but using `guard` is prefered, because `guard` statement without `return`, `break` or `continue` produces a compile-time error, so exit is guaranteed.
56+
You can also do it with `if` statement, but using `guard` is preferred, because `guard` statement without `return`, `break` or `continue` produces a compile-time error, so exit is guaranteed.
5757

5858
#### Avoid Using Force-Unwrapping of Optionals
5959

@@ -307,4 +307,4 @@ _Rationale:_ Operators consist of punctuation characters, which can make them di
307307
* [日本語版](https://github.com/jarinosuke/swift-style-guide/blob/master/README_JP.md)
308308
* [한국어판](https://github.com/minsOne/swift-style-guide/blob/master/README_KR.md)
309309
* [Versión en Español](https://github.com/antoniosejas/swift-style-guide/blob/spanish/README-ES.md)
310-
* [Versão em Português do Brasil](https://github.com/fernandocastor/swift-style-guide/blob/master/README-PTBR.md)
310+
* [Versão em Português do Brasil](https://github.com/fernandocastor/swift-style-guide/blob/master/README-PTBR.md)

0 commit comments

Comments
 (0)