From 66b2dcff9a5e2ca30e2326476670707a96b97a1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Li=C5=A1ka?= Date: Tue, 27 Aug 2024 10:29:18 +0200 Subject: [PATCH] Update src/read/mod.rs Co-authored-by: Philip Craig --- src/read/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read/mod.rs b/src/read/mod.rs index 2366e1cf..40cba663 100644 --- a/src/read/mod.rs +++ b/src/read/mod.rs @@ -1005,7 +1005,7 @@ impl<'data> CompressedData<'data> { } if size != decompressed.len() { return Err(Error( - "Uncompressed size does not match the uncompressed size declared in the compression header", + "Uncompressed data size does not match compression header", )); }