mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
refactor(codegen): rename var in CodeBuffer (#6510)
This commit is contained in:
parent
39c2e66b0b
commit
e7f3e28076
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue