Skip to content

Commit

Permalink
Fix typo in error message (#100)
Browse files Browse the repository at this point in the history
fixed a typo in the error message when the end of the central directory record could not be found
  • Loading branch information
tpoisot authored Apr 16, 2023
1 parent 7dbf67d commit a599b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZipFile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ function _find_sigoffset(io::IO, sig::UInt32)
end
end
if offset === nothing
error("failed to find end of centeral directory record")
error("failed to find end of central directory record")
end
offset
end
Expand Down

0 comments on commit a599b0a

Please sign in to comment.