From 7a1f851b4d10912ac645b7167535c2c4d5345802 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 21 Sep 2026 19:26:45 +0200 Subject: refactor(engine-macros): fix clippy lints --- engine-macros/src/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine-macros/src/util.rs') diff --git a/engine-macros/src/util.rs b/engine-macros/src/util.rs index 515b066..dbeb042 100644 --- a/engine-macros/src/util.rs +++ b/engine-macros/src/util.rs @@ -54,7 +54,7 @@ pub fn syn_path_to_string(path: &syn::Path) -> String for (segment, punct) in path.segments.pairs().map(syn::punctuated::Pair::into_tuple) { let segment_ident = &segment.ident; - write!(output, "{segment_ident}",).unwrap(); + write!(output, "{segment_ident}").unwrap(); if let Some(punct) = punct { write!(output, "{}", punct.to_token_stream()).unwrap(); -- cgit v1.2.3-18-g5258