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 6721ec1ab9 docs: fix typo for Decimal128Array (#7525)
6721ec1ab9 is described below
commit 6721ec1ab93f6079638ec0b69d73740015dcbc94
Author: Bo Lu <[email protected]>
AuthorDate: Tue May 20 00:04:58 2025 +1000
docs: fix typo for Decimal128Array (#7525)
---
arrow-array/src/array/primitive_array.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arrow-array/src/array/primitive_array.rs
b/arrow-array/src/array/primitive_array.rs
index cb6d46129e..073ad97744 100644
--- a/arrow-array/src/array/primitive_array.rs
+++ b/arrow-array/src/array/primitive_array.rs
@@ -418,7 +418,7 @@ pub type DurationNanosecondArray =
PrimitiveArray<DurationNanosecondType>;
///
/// ```
/// # use arrow_array::Decimal128Array;
-/// // Create from Vec<Option<i18>>
+/// // Create from Vec<Option<i128>>
/// let arr = Decimal128Array::from(vec![Some(1), None, Some(2)]);
/// // Create from Vec<i128>
/// let arr = Decimal128Array::from(vec![1, 2, 3]);