diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-01-08 21:30:53 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:33:29 +0100 |
| commit | c40c89bb4edc22c4a60d8677c660a9ab7eb47e92 (patch) | |
| tree | 3ba72592f324dd7bef32773211b093e4949d6ff0 /macros/src/check.rs | |
| parent | 6d252785e83218eeb5d080836281c90b86ca0e03 (diff) | |
Clippy fixes
Diffstat (limited to 'macros/src/check.rs')
| -rw-r--r-- | macros/src/check.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macros/src/check.rs b/macros/src/check.rs index 72d0a27..a05c82e 100644 --- a/macros/src/check.rs +++ b/macros/src/check.rs @@ -41,8 +41,7 @@ pub fn app(app: &App) -> parse::Result<()> { let s = { format!( "not enough interrupts to dispatch \ - all software tasks (need: {}; given: {})", - need, given + all software tasks (need: {need}; given: {given})" ) }; |
