summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorMike Boutin <mike.boutin@gmail.com>2014-04-29 20:35:26 -0400
committerMike Boutin <mike.boutin@gmail.com>2014-05-05 11:24:00 -0400
commite65aea522cf0aca71c39097138748b95f165c3be (patch)
tree2160863d60b4e36063c03104c4af2359adf54e48 /src/doc/tutorial.md
parent81bc32d9750f34a2218e6ba8f2d2c1a101f8a8a1 (diff)
downloadrust-e65aea522cf0aca71c39097138748b95f165c3be.tar.gz
rust-e65aea522cf0aca71c39097138748b95f165c3be.zip
doc: Minor example formatting in 11 References
Diffstat (limited to 'src/doc/tutorial.md')
-rw-r--r--src/doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md
index d64af8e2c65..5378f40238c 100644
--- a/src/doc/tutorial.md
+++ b/src/doc/tutorial.md
@@ -1413,7 +1413,7 @@ contains a point, but allocated in a different location:
 
 ~~~
 # struct Point { x: f64, y: f64 }
-let on_the_stack : Point  =  Point { x: 3.0, y: 4.0 };
+let on_the_stack :  Point =  Point { x: 3.0, y: 4.0 };
 let owned_box    : ~Point = ~Point { x: 7.0, y: 9.0 };
 ~~~