From 1d3572cebb354fccecb9baa8bf41c02bbba2f723 Mon Sep 17 00:00:00 2001 From: tsua Date: Fri, 6 Sep 2024 20:59:59 -0500 Subject: [PATCH] Corrected x values for example rectangle --- src/custom_types/structs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/custom_types/structs.md b/src/custom_types/structs.md index f8f93eea5b..eccd30eb2d 100644 --- a/src/custom_types/structs.md +++ b/src/custom_types/structs.md @@ -47,15 +47,15 @@ fn main() { println!("{:?}", peter); // Instantiate a `Point` - let point: Point = Point { x: 10.3, y: 0.4 }; - let another_point: Point = Point { x: 5.2, y: 0.2 }; + let point: Point = Point { x: 5.2, y: 0.4 }; + let another_point: Point = Point { x: 10.3, y: 0.2 }; // Access the fields of the point println!("point coordinates: ({}, {})", point.x, point.y); // Make a new point by using struct update syntax to use the fields of our // other one - let bottom_right = Point { x: 5.2, ..another_point }; + let bottom_right = Point { x: 10.3, ..another_point }; // `bottom_right.y` will be the same as `another_point.y` because we used that field // from `another_point`