Skip to content

Commit 04e25e8

Browse files
committed
vm/function/{byteslike -> buffer}.rs
those types are buffer utilities byteslike is one of them
1 parent 6ba322f commit 04e25e8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

vm/src/function.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mod argument;
2-
mod byteslike;
2+
mod buffer;
33
mod number;
44

55
use crate::{
@@ -14,7 +14,7 @@ use std::marker::PhantomData;
1414
use std::ops::RangeInclusive;
1515

1616
pub use argument::{ArgCallable, ArgIterable};
17-
pub use byteslike::{ArgBytesLike, ArgMemoryBuffer, ArgStrOrBytesLike};
17+
pub use buffer::{ArgBytesLike, ArgMemoryBuffer, ArgStrOrBytesLike};
1818
pub use number::{ArgIntoBool, ArgIntoComplex, ArgIntoFloat};
1919

2020
/// Implemented by any type that can be returned from a built-in Python function.

0 commit comments

Comments
 (0)