From ba4c6936d542731150dbf90e76967d8bde252ad1 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 10 May 2024 16:37:02 -0700 Subject: [PATCH] doc: Important clarification: "any user" -> "any non-root user" --- src/read.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read.rs b/src/read.rs index 0199f7e1..909c218d 100644 --- a/src/read.rs +++ b/src/read.rs @@ -660,8 +660,8 @@ impl ZipArchive { /// /// 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 user except you unless - /// and until their contents are fully extracted. + /// readable, writable or usable as process working directories by any non-root user except you + /// unless and until their contents are fully extracted. pub fn extract>(&mut self, directory: P) -> ZipResult<()> { use std::fs; #[cfg(unix)]