Skip to content

Commit 121caf7

Browse files
committed
Update decompression.jl
1 parent 0936d2b commit 121caf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decompression.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ end
761761
function Base.getindex(B::JoinCompressed, k::Int)
762762
dim = B.m + B.n
763763
j, i = divrem(k - 1, dim)
764-
return getindex(B, i+1, j+1)
764+
return getindex(B, i + 1, j + 1)
765765
end
766766

767767
function decompress!(

0 commit comments

Comments
 (0)