Skip to content

Commit 28801a3

Browse files
zig fmt lzma.zig
1 parent 288d015 commit 28801a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/compress/xz/lzma.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ fn Vec2D(comptime T: type) type {
534534

535535
pub fn get(self: *Self, row: usize) ![]T {
536536
const start_row = try std.math.mul(usize, row, self.cols);
537-
return self.data[start_row..start_row + self.cols];
537+
return self.data[start_row .. start_row + self.cols];
538538
}
539539
};
540540
}

0 commit comments

Comments
 (0)