Skip to content

Commit 3e8fea6

Browse files
committed
Fix config formatting, less indenting, more spacing
1 parent 2a4571d commit 3e8fea6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: clippy_lints/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -483,10 +483,10 @@ pub fn explain(name: &str) {
483483
.find_all(|cconf| cconf.lints.contains(&info.lint.name_lower()[8..].to_owned()))
484484
{
485485
// If it has, print it
486-
println!("### Configuration for {}:", info.lint.name_lower());
486+
println!("### Configuration for {}:\n", info.lint.name_lower());
487487
for position in config_vec_positions {
488488
let conf = &mdconf[position];
489-
println!(" - {}: {} (default: {})", conf.name, conf.doc, conf.default);
489+
println!(" - {}: {} (default: {})", conf.name, conf.doc, conf.default);
490490
}
491491
}
492492
},

0 commit comments

Comments
 (0)