Skip to content

Commit 9a73899

Browse files
committed
chore[array]: rustfmt Patched slice.rs
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 58ba071 commit 9a73899

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • vortex-array/src/arrays/patched/vtable

vortex-array/src/arrays/patched/vtable/slice.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ impl SliceReduce for Patched {
2121

2222
match array.patches().slice(range)? {
2323
// Patches remain in the sliced range: rewrap them around the sliced inner.
24-
Some(patches) => Ok(Some(Patched::wrap(inner, &patches, array.n_lanes()).into_array())),
24+
Some(patches) => Ok(Some(
25+
Patched::wrap(inner, &patches, array.n_lanes()).into_array(),
26+
)),
2527
// No patches overlap the slice, so the inner array already holds the final values.
2628
None => Ok(Some(inner)),
2729
}

0 commit comments

Comments
 (0)