From 4a5d28ed30894c9d379529dea8f593e74ea2d358 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 10 May 2024 16:39:12 -0700 Subject: [PATCH] doc: Important correction: contents might not have been extracted at all --- src/read.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/read.rs b/src/read.rs index 909c218d..d8e553fe 100644 --- a/src/read.rs +++ b/src/read.rs @@ -659,9 +659,9 @@ impl ZipArchive { /// already exist. Paths are sanitized with [`ZipFile::enclosed_name`]. /// /// Extraction is not atomic. If an error is encountered, some of the files - /// may be left on disk. However, on Unix systems, no newly-created directories will be - /// readable, writable or usable as process working directories by any non-root user except you - /// unless and until their contents are fully extracted. + /// may be left on disk. However, on Unix systems, no newly-created directories with part but + /// not all of their contents extracted will be readable, writable or usable as process working + /// directories by any non-root user except you. pub fn extract>(&mut self, directory: P) -> ZipResult<()> { use std::fs; #[cfg(unix)]