Skip to content

Commit 7d72815

Browse files
committed
Format
1 parent 17dcf56 commit 7d72815

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clippy_lints/src/utils/internal_lints/metadata_collector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ This lint has the following configuration variables:
195195

196196
fn get_markdown_docs(&self) -> String {
197197
format!(
198-
r#"# Lint Configuration Options
198+
r#"# Lint Configuration Options
199199
200200
The following list shows each configuration option, along with a description, its default value, an example
201201
and lints affected.

clippy_lints/src/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl ClippyConfiguration {
6262
self.lints
6363
.iter()
6464
.map(|name| name.to_string().split_whitespace().next().unwrap().to_string())
65-
.map(|name| format!("* [`{name}`](https://rust-lang.github.io/rust-clippy/master/index.html#{name})"))
65+
.map(|name| format!("* [`{name}`](https://rust-lang.github.io/rust-clippy/master/index.html#{name})"))
6666
.join("\n"),
6767
)
6868
}

0 commit comments

Comments
 (0)