mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
fix(či): space between name and generics
This commit is contained in:
parent
22ba6bac06
commit
160b7c00a6
1 changed files with 1 additions and 1 deletions
|
|
@ -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::*;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue