Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
rluvaton committed Nov 29, 2024
1 parent 90aea71 commit a39bba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow-data/src/transform/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ impl<'a> MutableArrayData<'a> {
}

/// Extends the in progress array with a region of the input arrays
///
///
/// For extending scalar value, use [MutableArrayData::extend_scalar].
///
/// # Arguments
Expand Down Expand Up @@ -731,7 +731,7 @@ impl<'a> MutableArrayData<'a> {
/// This function panics if there is an invalid index,
/// i.e. `index` >= the number of source arrays
/// or `start` + `count` > the length of the `index`th array
///
///
pub fn extend_scalar(&mut self, index: usize, scalar_index: usize, count: usize) {
let extend_null_fn = &self.extend_null_bits[index];
let extend_value_fn = &self.extend_values[index];
Expand Down

0 comments on commit a39bba5

Please sign in to comment.