Skip to content

Commit 1fd2f95

Browse files
committed
chore: fix typos
1 parent 7fad2e3 commit 1fd2f95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/iceberg/src/writer/file_writer/parquet_writer.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,17 +345,17 @@ macro_rules! count_float_nans {
345345
macro_rules! handle_list_type {
346346
($t:ty, $col:ident, $self:ident, $field:ident, $arrow_field:ident) => {
347347
let list_arr = $col.as_any().downcast_ref::<$t>().unwrap();
348-
let field_data_typ = $arrow_field.data_type();
348+
let field_data_type = $arrow_field.data_type();
349349

350350
let n_vals = list_arr.offsets().len() - 1;
351351

352352
let field = match $field.clone().field_type.deref() {
353-
Type::List(list_typ) => list_typ.element_field.clone(),
353+
Type::List(list_type) => list_type.element_field.clone(),
354354
_ => unreachable!(),
355355
};
356356
let field_id = field.id;
357357

358-
match field_data_typ {
358+
match field_data_type {
359359
DataType::Float32 => {
360360
for idx in 0..n_vals {
361361
let arr_ref = list_arr.value(idx);

0 commit comments

Comments
 (0)