This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/main by this push:
new b10567f61c Fix GenericBinaryArray docstring. (#7588)
b10567f61c is described below
commit b10567f61c3f483ba91afc85a08fdb06c6eca76d
Author: Bruno <[email protected]>
AuthorDate: Mon Jun 2 16:47:05 2025 +0200
Fix GenericBinaryArray docstring. (#7588)
The doc used to say that GenericBinaryArray is a GenericBinaryArray for
storing `[u8]`.
The intention is actually to say that GenericBinaryArray is a
GenericByteArray for storing `[u8]`.
This PR fixes that.
# Which issue does this PR close?
none -- it's a small typo fix.
---
arrow-array/src/array/binary_array.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arrow-array/src/array/binary_array.rs
b/arrow-array/src/array/binary_array.rs
index 0e8a7a7cb6..8e2158416f 100644
--- a/arrow-array/src/array/binary_array.rs
+++ b/arrow-array/src/array/binary_array.rs
@@ -20,7 +20,7 @@ use crate::{Array, GenericByteArray, GenericListArray,
GenericStringArray, Offse
use arrow_data::ArrayData;
use arrow_schema::DataType;
-/// A [`GenericBinaryArray`] for storing `[u8]`
+/// A [`GenericByteArray`] for storing `[u8]`
pub type GenericBinaryArray<OffsetSize> =
GenericByteArray<GenericBinaryType<OffsetSize>>;
impl<OffsetSize: OffsetSizeTrait> GenericBinaryArray<OffsetSize> {