fix doc comments
This commit is contained in:
parent
a769e9410e
commit
80ca254569
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue