Make name of variable more explicit

This commit is contained in:
Hanno Braun 2024-12-11 21:26:44 +01:00
parent a63ded757e
commit 3764226998

View File

@ -78,7 +78,7 @@ impl TextRenderer {
}, },
); );
for (op, selected, indent) in operations.operations() { for (op, selected, indent_level) in operations.operations() {
let mut attrs = glyphon::Attrs::new(); let mut attrs = glyphon::Attrs::new();
if selected { if selected {
@ -87,7 +87,7 @@ impl TextRenderer {
let mut line = String::new(); let mut line = String::new();
for _ in 0..indent { for _ in 0..indent_level {
write!(line, "\t")?; write!(line, "\t")?;
} }