big fences to show that ``rust is the same as ``

This commit is contained in:
QuietMisdreavus 2018-03-12 16:15:38 -05:00
parent 883e74645d
commit c80220436b

View file

@ -19,15 +19,19 @@ running `rustdoc --test foo.rs` will extract this example, and then run it as a
Please note that by default, if no language is set for the block code, `rustdoc`
assumes it is `Rust` code. So the following:
``````markdown
```rust
let x = 5;
```
``````
is strictly equivalent to:
``````markdown
```
let x = 5;
```
``````
There's some subtlety though! Read on for more details.