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

Commit b33c499

Browse files
committed
Merge pull request #34 from morizotter/fix-code-in-sentence
Fix foo in sentence.
2 parents c11184f + 35a6a18 commit b33c499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ _Rationale:_ Explicit `if let`-binding of optionals results in safer code. Force
5959

6060
#### Avoid Using Implicitly Unwrapped Optionals
6161

62-
Where possible, use `let foo: FooType?` instead of `let foo: FooType!` if foo may be nil (Note that in general, `?` can be used instead of `!`).
62+
Where possible, use `let foo: FooType?` instead of `let foo: FooType!` if `foo` may be nil (Note that in general, `?` can be used instead of `!`).
6363

6464
_Rationale:_ Explicit optionals result in safer code. Implicitly unwrapped optionals have the potential of crashing at runtime.
6565

0 commit comments

Comments
 (0)