From 2f4acd3900832e8cda24fbc0899b78ab81682d8b Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 1 May 2023 16:51:55 -0700 Subject: [PATCH] Formatting tweaks --- src/write.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 0281c94d..837b28cc 100644 --- a/src/write.rs +++ b/src/write.rs @@ -128,8 +128,9 @@ impl FileOptions { self } + /// Changes the compression method to Deflate if it would otherwise be no compression. + #[must_use] #[cfg(fuzzing)] - /// Changes the compression method to the default if it would otherwise be no compression. pub fn force_compression(mut self) -> FileOptions { if self.compression_method == CompressionMethod::Stored { self.compression_method = CompressionMethod::Deflated;