From e65aea522cf0aca71c39097138748b95f165c3be Mon Sep 17 00:00:00 2001 From: Mike Boutin Date: Tue, 29 Apr 2014 20:35:26 -0400 Subject: [PATCH] doc: Minor example formatting in 11 References --- src/doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index d64af8e2c65e..5378f40238cb 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 }; ~~~