Skip to content

Commit 0d239e7

Browse files
committed
fix typo
1 parent a4ea3a4 commit 0d239e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ func computeFFT(context: Context?, inputData: InputData?) throws -> Frequencies
933933
}
934934
```
935935

936-
When multiple optionals are unwrapped either with `guard` or `if let`, minimize nesting by using the compound version when possible. In the compound version, place the `guard` on its own line, then ident each condition on its own line. The `else` clause is indented to match the conditions and the code is indented one additional level, as shown below. Example:
936+
When multiple optionals are unwrapped either with `guard` or `if let`, minimize nesting by using the compound version when possible. In the compound version, place the `guard` on its own line, then indent each condition on its own line. The `else` clause is indented to match the conditions and the code is indented one additional level, as shown below. Example:
937937

938938
**Preferred**:
939939
```swift
@@ -1105,7 +1105,7 @@ Smiley faces are a very prominent style feature of the [raywenderlich.com](https
11051105
**Not Preferred**:
11061106
```
11071107
:)
1108-
```
1108+
```
11091109

11101110
## References
11111111

0 commit comments

Comments
 (0)