Skip to content

Commit a9e5993

Browse files
committed
remove stale comment
Signed-off-by: Matt Katz <mhkatz97@gmail.com>
1 parent c661189 commit a9e5993

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

vortex-file/src/strategy.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,11 @@ impl WriteStrategyBuilder {
247247
// 7. for each chunk create a layout. Under the `unstable_encodings` feature, list-typed
248248
// chunks route through `ListLayoutStrategy` (separately-addressable elements/offsets/
249249
// validity sub-layouts; non-list chunks fall through its built-in fallback to `flat`).
250-
// Nested lists (`list<list<...>>`) recurse, shredding each level into its own
251-
// `ListLayout`. Otherwise everything goes through the flat strategy.
250+
// Otherwise everything goes through the flat strategy.
252251
#[cfg(feature = "unstable_encodings")]
253252
let leaf: Arc<dyn LayoutStrategy> = Arc::new(
254253
// Thread the configured `flat` (which carries `allow_encodings` / any custom flat
255-
// override) through every child; list elements still recurse into a nested ListLayout.
254+
// override) through every child.
256255
ListLayoutStrategy::default()
257256
.with_elements(Arc::clone(&flat))
258257
.with_offsets(Arc::clone(&flat))

0 commit comments

Comments
 (0)