doc: Important clarification: "any user" -> "any non-root user"

This commit is contained in:
Chris Hennick 2024-05-10 16:37:02 -07:00
parent c28614a0b2
commit ba4c6936d5
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -660,8 +660,8 @@ impl<R: Read + Seek> ZipArchive<R> {
///
/// 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<P: AsRef<Path>>(&mut self, directory: P) -> ZipResult<()> {
use std::fs;
#[cfg(unix)]