We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a2286d commit 8a6342fCopy full SHA for 8a6342f
src/doc/guide.md
@@ -961,7 +961,7 @@ struct Point {
961
}
962
963
fn main() {
964
- let origin = Point { x: 0i, y: 0i };
+ let origin = Point { x: 0i, y: 0i };
965
966
println!("The origin is at ({}, {})", origin.x, origin.y);
967
@@ -988,7 +988,7 @@ struct Point {
988
989
990
991
- let mut point = Point { x: 0i, y: 0i };
+ let mut point = Point { x: 0i, y: 0i };
992
993
point.x = 5;
994
0 commit comments