summaryrefslogtreecommitdiff
path: root/ops/fast_call.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ops/fast_call.rs')
-rw-r--r--ops/fast_call.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ops/fast_call.rs b/ops/fast_call.rs
index de11b389b..9093190b2 100644
--- a/ops/fast_call.rs
+++ b/ops/fast_call.rs
@@ -68,9 +68,9 @@ pub(crate) fn generate(
// - op_foo_fast, the fast call type.
// - op_foo_fast_fn, the fast call function.
let ident = item_fn.sig.ident.clone();
- let fast_ident = Ident::new(&format!("{}_fast", ident), Span::call_site());
+ let fast_ident = Ident::new(&format!("{ident}_fast"), Span::call_site());
let fast_fn_ident =
- Ident::new(&format!("{}_fast_fn", ident), Span::call_site());
+ Ident::new(&format!("{ident}_fast_fn"), Span::call_site());
// Deal with generics.
let generics = &item_fn.sig.generics;