]> git.lizzy.rs Git - rust.git/commitdiff
Fixes spacing
authorRahul Horé <hore.rahul@gmail.com>
Fri, 3 Oct 2014 17:37:05 +0000 (13:37 -0400)
committerRahul Horé <hore.rahul@gmail.com>
Fri, 3 Oct 2014 17:37:05 +0000 (13:37 -0400)
src/doc/guide.md

index 7805b3d5681a5c140baf7656ce8ed69a77d85dce..a5c0ae1d66c446cfa827fb587c2ff4235a6f6e3b 100644 (file)
@@ -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);
 }
@@ -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;