From c118b89ad94ecabf3de85f8e8df81f0acf552caa Mon Sep 17 00:00:00 2001 From: Noufal Ibrahim Date: Sun, 3 Nov 2013 22:41:17 +0530 Subject: [PATCH] Fixed formatting. The code block shows up inline without proper formatting without this newline. Signed-off-by: Noufal Ibrahim --- doc/tutorial.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/tutorial.md b/doc/tutorial.md index 35b973ee89f..fff5909dc89 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -759,6 +759,7 @@ different type from `Bar(1, 2)`), and tuple structs' _fields_ do not have names. For example: + ~~~~ struct MyTup(int, int, f64); let mytup: MyTup = MyTup(10, 20, 30.0);