From a1fd0c17fe619eea9db0b09a1b1be9b59508da7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Mortensen?= Date: Tue, 31 Oct 2017 16:01:53 +0000 Subject: [PATCH] Update capitalisation in 3.4.4 for newer Swift versions, to match example (#18) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6b8b9f..477c911 100644 --- a/README.md +++ b/README.md @@ -540,7 +540,7 @@ You can override existing operators to support new types (especially `==`). Howe * **3.4.3** The `case` statements should line up with the `switch` statement itself as per default Swift standards. -* **3.4.4** When defining a case that has an associated value, make sure that this value is appropriately labeled as opposed to just types (e.g. `case Hunger(hungerLevel: Int)` instead of `case Hunger(Int)`). +* **3.4.4** When defining a case that has an associated value, make sure that this value is appropriately labeled as opposed to just types (e.g. `case hunger(hungerLevel: Int)` instead of `case hunger(Int)`). ```swift enum Problem {