From de0cbc039ebea8afc96e1c235e3711a4779aa684 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 1 May 2023 16:47:07 -0700 Subject: [PATCH] Add missing doc --- src/write.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/write.rs b/src/write.rs index 76e5f4cf..3801e892 100644 --- a/src/write.rs +++ b/src/write.rs @@ -129,6 +129,7 @@ impl FileOptions { } #[cfg(fuzzing)] + /// Changes the compression method to the default if it would otherwise be no compression. pub fn force_compression(mut self) { if self.compression_method == CompressionMethod::Stored { self.compression_method = CompressionMethod::Deflated;