From 4afadb158ba8a21f12d9541b6c455e1549851013 Mon Sep 17 00:00:00 2001 From: Grzegorz Zadkowski <91826913+raxavelo@users.noreply.github.com> Date: Fri, 12 Nov 2021 19:03:59 +0100 Subject: [PATCH] Correction in first exercise Instruction "The initial width and height should be 60 and 80, respectively." is wrong. It should be: "80 and 60, respectively." Users are loosing a lot of time because that error in instruction. --- exercises/concept/windowing-system/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/windowing-system/.docs/instructions.md b/exercises/concept/windowing-system/.docs/instructions.md index 3eb6f3b31..f82981cac 100644 --- a/exercises/concept/windowing-system/.docs/instructions.md +++ b/exercises/concept/windowing-system/.docs/instructions.md @@ -26,7 +26,7 @@ screenSize.height ║ | │ │ ## 1. Define a Size struct -Define a struct named `Size` with two `Int` properties, `width` and `height` that store the window's current width and height, respectively. The initial width and height should be 60 and 80, respectively. Include a method `resize(newWidth:newHeight:)` that takes new width and height parameters and changes the properties to reflect the new size. +Define a struct named `Size` with two `Int` properties, `width` and `height` that store the window's current width and height, respectively. The initial width and height should be 80 and 60, respectively. Include a method `resize(newWidth:newHeight:)` that takes new width and height parameters and changes the properties to reflect the new size. ```swift let size1080x764 = Size(width: 1080, height: 764)