Skip to content

Commit

Permalink
Merge pull request #1884 from cyrts/issue-1883
Browse files Browse the repository at this point in the history
Corrected x values for example rectangle
  • Loading branch information
marioidival committed Sep 8, 2024
2 parents 859786c + 1d3572c commit 70aa7ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/custom_types/structs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 70aa7ae

Please sign in to comment.