From 7b83591f2675354ac26c1ecf9b5d00dede94dc31 Mon Sep 17 00:00:00 2001 From: jkasari Date: Thu, 19 Jan 2023 18:37:50 -0800 Subject: [PATCH] Add units to the size documentation. The documentation did not list what it meant by "size". I changed it to specify that it is returning the size in bytes. --- src/read.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read.rs b/src/read.rs index bdfbb0c3..9c40e656 100644 --- a/src/read.rs +++ b/src/read.rs @@ -920,12 +920,12 @@ impl<'a> ZipFile<'a> { self.data.compression_method } - /// Get the size of the file in the archive + /// Get the size of the file, in bytes, in the archive pub fn compressed_size(&self) -> u64 { self.data.compressed_size } - /// Get the size of the file when uncompressed + /// Get the size of the file, in bytes, when uncompressed pub fn size(&self) -> u64 { self.data.uncompressed_size }