mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +00:00
refactor(codegen): rename CodeBuffer::print_ascii_bytes method (#6507)
Pure refactor.
This commit is contained in:
parent
cd9fe9ec03
commit
1bbd383d0f
1 changed files with 1 additions and 1 deletions
|
|
@ -257,7 +257,7 @@ impl CodeBuffer {
|
|||
/// code.print_ascii([b'f', b'o', b'o'].into_iter());
|
||||
/// assert_eq!(String::from(code), "foo");
|
||||
/// ```
|
||||
pub fn print_ascii<I>(&mut self, bytes: I)
|
||||
pub fn print_ascii_bytes<I>(&mut self, bytes: I)
|
||||
where
|
||||
I: IntoIterator<Item = u8>,
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue