Skip to content

Commit 56a8ef4

Browse files
committed
Auto merge of #9481 - giraffate:fix_indents, r=xFrednet
Fix indents Markdowns are not displayed correctly. https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/common_tools_writing_lints.md#dealing-with-macros-and-expansions changelog: none
2 parents ba9afaf + a392370 commit 56a8ef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/src/development/common_tools_writing_lints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ functions to deal with macros:
227227
crates
228228

229229
```rust
230-
use rustc_middle::lint::in_external_macro;
230+
use rustc_middle::lint::in_external_macro;
231231

232-
use a_crate_with_macros::foo;
232+
use a_crate_with_macros::foo;
233233

234234
// `foo` is defined in `a_crate_with_macros`
235235
foo!("bar");

0 commit comments

Comments
 (0)