Skip to content

Commit

Permalink
doc: Minor example formatting in 11 References
Browse files Browse the repository at this point in the history
  • Loading branch information
iliekturtles committed May 5, 2014
1 parent 81bc32d commit e65aea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/tutorial.md
Expand Up @@ -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 };
~~~

Expand Down

0 comments on commit e65aea5

Please sign in to comment.