about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-11-03 16:06:05 -0800
committerbors <bors@rust-lang.org>2013-11-03 16:06:05 -0800
commitc4c2b38dae5d08d0eda6fbb8736f6295d9fdef9e (patch)
tree240898becd97f396cb6e8cbe59d0433fe3427e71
parent702767db65c9b9d4e601ec5de836246fb9a9e462 (diff)
parentc118b89ad94ecabf3de85f8e8df81f0acf552caa (diff)
downloadrust-c4c2b38dae5d08d0eda6fbb8736f6295d9fdef9e.tar.gz
rust-c4c2b38dae5d08d0eda6fbb8736f6295d9fdef9e.zip
auto merge of #10248 : nibrahim/rust/docformatting, r=pcwalton
The code block shows up inline without proper formatting without this
newline.

Signed-off-by: Noufal Ibrahim <noufal@nibrahim.net.in>
-rw-r--r--doc/tutorial.md1
1 files changed, 1 insertions, 0 deletions
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);