Fix indentation of code blocks

This commit is contained in:
David Tolnay 2017-01-12 21:00:01 -08:00
parent 51c52d5280
commit faceb2b77b
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -25,52 +25,52 @@ colorized. Install with `pip install Pygments`.
`$ cat src/main.rs`
> ```rust
#[derive(Debug)]
struct S;
fn main() {
println!("{:?}", S);
}
```
> #[derive(Debug)]
> struct S;
>
> fn main() {
> println!("{:?}", S);
> }
> ```
`$ cargo expand`
> ```rust
#![feature(prelude_import)]
#![no_std]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate std as std;
struct S;
#[automatically_derived]
#[allow(unused_qualifications)]
impl ::std::fmt::Debug for S {
fn fmt(&self, __arg_0: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
match *self {
S => {
let mut builder = __arg_0.debug_tuple("S");
builder.finish()
}
}
}
}
fn main() {
::io::_print(::std::fmt::Arguments::new_v1({
static __STATIC_FMTSTR:
&'static [&'static str]
=
&["", "\n"];
__STATIC_FMTSTR
},
&match (&S,) {
(__arg0,) =>
[::std::fmt::ArgumentV1::new(__arg0,
::std::fmt::Debug::fmt)],
}));
}
```
> #![feature(prelude_import)]
> #![no_std]
> #[prelude_import]
> use std::prelude::v1::*;
> #[macro_use]
> extern crate std as std;
> struct S;
> #[automatically_derived]
> #[allow(unused_qualifications)]
> impl ::std::fmt::Debug for S {
> fn fmt(&self, __arg_0: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
> match *self {
> S => {
> let mut builder = __arg_0.debug_tuple("S");
> builder.finish()
> }
> }
> }
> }
>
> fn main() {
> ::io::_print(::std::fmt::Arguments::new_v1({
> static __STATIC_FMTSTR:
> &'static [&'static str]
> =
> &["", "\n"];
> __STATIC_FMTSTR
> },
> &match (&S,) {
> (__arg0,) =>
> [::std::fmt::ArgumentV1::new(__arg0,
> ::std::fmt::Debug::fmt)],
> }));
> }
> ```
To expand a particular test target: