From a8ec016b51ed9ea54c0b444102fc16c1ebb8819a Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 5 May 2024 18:43:40 -0700 Subject: [PATCH] style: cargo fmt --all --- src/lib.rs | 3 +-- src/read.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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;