Skip to content

Commit

Permalink
chore: apply clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Feb 6, 2025
1 parent 1caa01a commit 6fe99c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindgen/codegen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ fn format_attribute_tokens(attrs: &[TokenStream]) -> Vec<String> {

// Only insert the attribute if there are formatted comments
if !comment.is_empty() {
attrs.insert(0, format!("#[doc = \"{}\"]", comment));
attrs.insert(0, format!("#[doc = \"{comment}\"]"));
}

attrs
Expand Down

0 comments on commit 6fe99c9

Please sign in to comment.