Fix typos

This commit is contained in:
Maxime Augier 2024-08-21 22:09:44 +02:00
parent ef2583e537
commit ec8e9f3dec

View File

@ -169,9 +169,9 @@ fn main() -> Result<()> {
site.id, site.level_of_access site.id, site.level_of_access
); );
for circuit in site.details(&mut ctx)?.circuits { for circuit in site.details(&mut ctx)?.circuits {
println!(" Circuit {} ({}A)", circuit.id, circuit.rated_current); println!(" Circuit {} ({}A)", circuit.id, circuit.rated_current);
for charger in circuit.chargers { for charger in circuit.chargers {
println!("Charger {} (level {}", charger.id, charger.level_of_access); println!(" Charger {} (level {})", charger.id, charger.level_of_access);
} }
} }
} }