From afa22d63d700d6b3b5f2f00b3b209928d38e017c Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Mon, 16 Apr 2018 16:25:57 +0900 Subject: [PATCH] Remove unnecessary indentation in rustdoc book codeblock. --- src/doc/rustdoc/src/documentation-tests.md | 38 +++++++++++----------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/doc/rustdoc/src/documentation-tests.md b/src/doc/rustdoc/src/documentation-tests.md index fea8685a605d6..3098587a8a4cc 100644 --- a/src/doc/rustdoc/src/documentation-tests.md +++ b/src/doc/rustdoc/src/documentation-tests.md @@ -138,31 +138,31 @@ To keep each code block testable, we want the whole program in each block, but we don't want the reader to see every line every time. Here's what we put in our source code: -```text - First, we set `x` to five: +``````markdown +First, we set `x` to five: - ``` - let x = 5; - # let y = 6; - # println!("{}", x + y); - ``` +``` +let x = 5; +# let y = 6; +# println!("{}", x + y); +``` - Next, we set `y` to six: +Next, we set `y` to six: - ``` - # let x = 5; - let y = 6; - # println!("{}", x + y); - ``` +``` +# let x = 5; +let y = 6; +# println!("{}", x + y); +``` - Finally, we print the sum of `x` and `y`: +Finally, we print the sum of `x` and `y`: - ``` - # let x = 5; - # let y = 6; - println!("{}", x + y); - ``` ``` +# let x = 5; +# let y = 6; +println!("{}", x + y); +``` +`````` By repeating all parts of the example, you can ensure that your example still compiles, while only showing the parts that are relevant to that part of your