Merge pull request #336 from jkasari/sizeDocs

Add units to the size documentation
This commit is contained in:
Alexander Zaitsev 2023-01-20 06:04:59 +03:00 committed by GitHub
commit 0dcc40bee0
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}