Auto merge of #13177 - GuillaumeGomez:fix-broken-list-lints-config, r=xFrednet

Fix broken list for lints config

Follow-up of #13166.

Finally figured out that it was a transformation and not the source that was the problem. It now looks like this:

![Screenshot from 2024-07-29 16-29-10](https://github.com/user-attachments/assets/4b89b3fe-8f85-47b8-8d9a-505badeaeac4)

r? `@xFrednet`

changelog: none
This commit is contained in:
bors 2024-07-31 11:11:39 +00:00
commit ea06fa326d
2 changed files with 6 additions and 1 deletions

View file

@ -14,7 +14,7 @@ impl fmt::Display for ClippyConfiguration {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "- `{}`: {}", self.name, self.doc)?;
if !self.default.is_empty() {
write!(f, "\n\n(default: `{}`)", self.default)?;
write!(f, "\n\n (default: `{}`)", self.default)?;
}
Ok(())
}