From 80ca2545695f8c460a1180a0fa942b7190c6afa9 Mon Sep 17 00:00:00 2001 From: Danny McClanahan <1305167+cosmicexplorer@users.noreply.github.com> Date: Fri, 24 May 2024 08:15:16 -0400 Subject: [PATCH] fix doc comments --- src/write.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index 337b167c..01ebe460 100644 --- a/src/write.rs +++ b/src/write.rs @@ -702,7 +702,7 @@ impl ZipWriter { /// Set ZIP archive comment. /// /// This sets the raw bytes of the comment. The comment - /// is typically expected to be encoded in UTF-8 + /// is typically expected to be encoded in UTF-8. pub fn set_raw_comment(&mut self, comment: Box<[u8]>) { self.comment = comment; } @@ -715,7 +715,7 @@ impl ZipWriter { /// Get ZIP archive comment. /// /// This returns the raw bytes of the comment. The comment - /// is typically expected to be encoded in UTF-8 + /// is typically expected to be encoded in UTF-8. pub const fn get_raw_comment(&self) -> &[u8] { &self.comment }