diff --git a/src/lib.rs b/src/lib.rs index e5cfd6d9..6ad24dda 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,8 +26,7 @@ //! //! #![warn(missing_docs)] -#![allow(unexpected_cfgs)] /// Needed for cfg(fuzzing) on nightly as of 2024-05-06 - +#![allow(unexpected_cfgs)] // Needed for cfg(fuzzing) on nightly as of 2024-05-06 pub use crate::compression::{CompressionMethod, SUPPORTED_COMPRESSION_METHODS}; pub use crate::read::ZipArchive; pub use crate::types::DateTime; diff --git a/src/read.rs b/src/read.rs index 55dc322c..14da1d8e 100644 --- a/src/read.rs +++ b/src/read.rs @@ -357,7 +357,7 @@ impl ZipArchive { }) } - /// Total size of the files in the archive, if it can be known. Doesn't include directories or + /// Total size of the files in the archive, if it can be known. Doesn't include directories or /// metadata. pub fn decompressed_size(&self) -> Option { let mut total = 0u128;