docs: clarify how to use the add_directory API

closes #323
This commit is contained in:
Marli Frost 2023-02-01 17:23:53 +00:00
parent e4503a312a
commit 0a09253896

View file

@ -699,7 +699,7 @@ impl<W: Write + io::Seek> ZipWriter<W> {
/// Add a directory entry.
///
/// You can't write data to the file afterwards.
/// As directories have no content, you must not call [`ZipWriter::write`] before adding a new file.
pub fn add_directory<S>(&mut self, name: S, mut options: FileOptions) -> ZipResult<()>
where
S: Into<String>,