about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/tutorial.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 5e238c5911d..685c9f72217 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -2550,18 +2550,21 @@ fn main() {
 ~~~~
 
 And here an example with multiple files:
+
 ~~~{.ignore}
 // a.rs - crate root
 use b::foo;
 mod b;
 fn main() { foo(); }
 ~~~
+
 ~~~{.ignore}
 // b.rs
 use b::c::bar;
 pub mod c;
 pub fn foo() { bar(); }
 ~~~
+
 ~~~
 // c.rs
 pub fn bar() { println("Baz!"); }