From ac6dfed15a0f00644def6740929e1dd6f32fe483 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 1 May 2024 14:36:33 -0700 Subject: [PATCH] doc: Fix formatting for unsafe function --- src/write.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 675063eb..cbdbb578 100644 --- a/src/write.rs +++ b/src/write.rs @@ -654,7 +654,9 @@ impl ZipWriter { /// Set the file length and crc32 manually. /// - /// SAFETY: This overwrites the internal crc32 calculation. It should only be used in case + /// # Safety + /// + /// This overwrites the internal crc32 calculation. It should only be used in case /// the underlying [Write] is written independently and you need to adjust the zip metadata. pub unsafe fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> { if !self.writing_to_file {