From 33de808d0f06fef4a6bc8100ebb15f01798fc621 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Wed, 19 Aug 2020 13:25:21 +0100 Subject: [PATCH] docs: use more descriptive langauge --- src/write.rs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/write.rs b/src/write.rs index 945a3ad3..192706d5 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1,4 +1,4 @@ -//! Structs for creating a new zip archive +//! Types for creating ZIP archives use crate::compression::CompressionMethod; use crate::result::{ZipError, ZipResult}; @@ -34,7 +34,10 @@ enum GenericZipWriter { Bzip2(BzEncoder), } -/// Generator for ZIP files. +/// ZIP archive generator +/// +/// Handles the bookkeeping involved in building an archive, and provides an +/// API to edit its contents. /// /// ``` /// fn doit() -> zip::result::ZipResult<()> @@ -183,9 +186,9 @@ impl ZipWriterStats { } impl ZipWriter { - /// Initializes the ZipWriter. + /// Initializes the archive. /// - /// Before writing to this object, the start_file command should be called. + /// Before writing to this object, the [`ZipWriter::start_file`] function should be called. pub fn new(inner: W) -> ZipWriter { ZipWriter { inner: GenericZipWriter::Storer(inner), @@ -272,7 +275,9 @@ impl ZipWriter { Ok(()) } - /// Starts a file. + /// Create a file in the archive and start writing its' contents. + /// + /// The data should be written using the [`io::Write`] implementation on this [`ZipWriter`] pub fn start_file(&mut self, name: S, mut options: FileOptions) -> ZipResult<()> where S: Into,