Skip to content

Commit

Permalink
Change "x[i:]" to "x[i:end]"
Browse files Browse the repository at this point in the history
  • Loading branch information
kmsquire committed Jan 22, 2014
1 parent fc2419c commit 595efb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GZip.jl
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ function write{T,N}(s::GZipStream, a::SubArray{T,N,Array})
write(s, pointer(a, 1), colsz)
else
cartesian_map((idxs...)->write(s, pointer(a, idxs), colsz),
tuple(1, size(a)[2:]...))
tuple(1, size(a)[2:end]...))
end
end

Expand Down

0 comments on commit 595efb8

Please sign in to comment.