Skip to content

Commit d69da72

Browse files
Dandandanclaude
andcommitted
Fix rustfmt style_edition 2024 formatting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ac31357 commit d69da72

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

parquet/src/encodings/rle.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,11 @@ impl RleDecoder {
520520
b.clone_from(unsafe { dict.get_unchecked(*i as usize) });
521521
}
522522
}
523-
for (b, i) in out_chunks.into_remainder().iter_mut().zip(idx.chunks_exact(8).remainder().iter()) {
523+
for (b, i) in out_chunks
524+
.into_remainder()
525+
.iter_mut()
526+
.zip(idx.chunks_exact(8).remainder().iter())
527+
{
524528
b.clone_from(&dict[*i as usize]);
525529
}
526530
}

0 commit comments

Comments
 (0)