fix(či): space between name and generics

This commit is contained in:
Oleksandr Babak 2025-03-23 09:50:40 +01:00 committed by Emil Fresk
parent 22ba6bac06
commit 160b7c00a6

View file

@ -44,7 +44,7 @@ pub fn codegen(app: &App, analysis: &Analysis) -> TokenStream2 {
#(#attrs)*
#(#cfgs)*
#[allow(non_snake_case)]
async fn #name#generics(#context: #name::Context<#lifetime> #(,#inputs)*) {
async fn #name #generics(#context: #name::Context<#lifetime> #(,#inputs)*) {
use rtic::Mutex as _;
use rtic::mutex::prelude::*;