fix doc comments

This commit is contained in:
Danny McClanahan 2024-05-24 08:15:16 -04:00
parent a769e9410e
commit 80ca254569
No known key found for this signature in database
GPG key ID: 6105C10F1A199CC7

View file

@ -702,7 +702,7 @@ impl<W: Write + Seek> ZipWriter<W> {
/// Set ZIP archive comment. /// Set ZIP archive comment.
/// ///
/// This sets the raw bytes of the comment. The 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]>) { pub fn set_raw_comment(&mut self, comment: Box<[u8]>) {
self.comment = comment; self.comment = comment;
} }
@ -715,7 +715,7 @@ impl<W: Write + Seek> ZipWriter<W> {
/// Get ZIP archive comment. /// Get ZIP archive comment.
/// ///
/// This returns the raw bytes of the comment. The 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] { pub const fn get_raw_comment(&self) -> &[u8] {
&self.comment &self.comment
} }