Skip to content

Commit 951c02d

Browse files
authored
docs: fix typo for Decimal128Array
1 parent 7bab215 commit 951c02d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arrow-array/src/array/primitive_array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ pub type DurationNanosecondArray = PrimitiveArray<DurationNanosecondType>;
418418
///
419419
/// ```
420420
/// # use arrow_array::Decimal128Array;
421-
/// // Create from Vec<Option<i18>>
421+
/// // Create from Vec<Option<i128>>
422422
/// let arr = Decimal128Array::from(vec![Some(1), None, Some(2)]);
423423
/// // Create from Vec<i128>
424424
/// let arr = Decimal128Array::from(vec![1, 2, 3]);

0 commit comments

Comments
 (0)