Fix clippy::println_empty_string, clippy::while_let_on_iterator, clippy::while_let_on_iterator lint style violations (#36613)

Related: #36577

Release Notes:

- N/A
This commit is contained in:
Umesh Yadav 2025-08-20 23:44:30 +05:30 committed by GitHub
parent 41e28a7185
commit ec8106d1db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 35 additions and 32 deletions

View file

@ -163,7 +163,7 @@ impl UserMessage {
if !content.is_empty() {
let _ = write!(&mut markdown, "{}\n\n{}\n", uri.as_link(), content);
} else {
let _ = write!(&mut markdown, "{}\n", uri.as_link());
let _ = writeln!(&mut markdown, "{}", uri.as_link());
}
}
}