Skip to content

Commit

Permalink
Fixes spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
O-I committed Oct 3, 2014
1 parent 9a2286d commit 8a6342f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc/guide.md
Expand Up @@ -961,7 +961,7 @@ struct Point {
}

fn main() {
let origin = Point { x: 0i, y: 0i };
let origin = Point { x: 0i, y: 0i };

println!("The origin is at ({}, {})", origin.x, origin.y);
}
Expand All @@ -988,7 +988,7 @@ struct Point {
}
fn main() {
let mut point = Point { x: 0i, y: 0i };
let mut point = Point { x: 0i, y: 0i };
point.x = 5;
Expand Down

0 comments on commit 8a6342f

Please sign in to comment.