mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
address clippy::uninlined_format_args
This commit is contained in:
parent
42ebfe57f1
commit
1104a12ca3
3 changed files with 4 additions and 4 deletions
|
|
@ -57,7 +57,7 @@ fn stm32() {
|
|||
println!("{}", p.name);
|
||||
let port_letter = p.name.strip_prefix("GPIO").unwrap();
|
||||
for pin_num in 0..16 {
|
||||
singletons.push(format!("P{}{}", port_letter, pin_num));
|
||||
singletons.push(format!("P{port_letter}{pin_num}"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue