From a599b0aac5d17403fdbbc4ea63612be299cf8417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Poisot?= Date: Sun, 16 Apr 2023 12:58:46 -0400 Subject: [PATCH] Fix typo in error message (#100) fixed a typo in the error message when the end of the central directory record could not be found --- src/ZipFile.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZipFile.jl b/src/ZipFile.jl index c7f5ccc..eb1b5df 100644 --- a/src/ZipFile.jl +++ b/src/ZipFile.jl @@ -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