refactor(codegen): rename var in CodeBuffer (#6510)

This commit is contained in:
overlookmotel 2024-10-13 11:58:39 +00:00
parent 39c2e66b0b
commit e7f3e28076

View file

@ -264,8 +264,8 @@ impl CodeBuffer {
let iter = bytes.into_iter();
let hint = iter.size_hint();
self.buf.reserve(hint.1.unwrap_or(hint.0));
for c in iter {
self.print_ascii_byte(c);
for byte in iter {
self.print_ascii_byte(byte);
}
}