From ff7e6385d35f388bc53e0b7902624540b202089f Mon Sep 17 00:00:00 2001 From: ChromaMaster Date: Sun, 31 Oct 2021 18:03:52 +0100 Subject: [PATCH] fix: Use the point as top left corner for `square` --- src/custom_types/structs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/custom_types/structs.md b/src/custom_types/structs.md index 508cff2314..f7813b4d36 100644 --- a/src/custom_types/structs.md +++ b/src/custom_types/structs.md @@ -89,7 +89,7 @@ fn main() { 1. Add a function `rect_area` which calculates the area of a `Rectangle` (try using nested destructuring). 2. Add a function `square` which takes a `Point` and a `f32` as arguments, and - returns a `Rectangle` with its lower left corner on the point, and a width and + returns a `Rectangle` with its top left corner on the point, and a width and height corresponding to the `f32`. ### See also