From 7645f09a3d092c829ab3d04af62fe747eb00af49 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 1 May 2024 14:13:50 -0700 Subject: [PATCH] doc: Fix an unresolved import --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index 6f4ef99b..15ccb217 100644 --- a/src/read.rs +++ b/src/read.rs @@ -1003,7 +1003,7 @@ impl<'a> ZipFile<'a> { /// `foo/../bar` as `foo/bar` (instead of `bar`). Because of this, /// [`ZipFile::enclosed_name`] is the better option in most scenarios. /// - /// [`ParentDir`]: `Component::ParentDir` + /// [`ParentDir`]: `PathBuf::Component::ParentDir` pub fn mangled_name(&self) -> PathBuf { self.data.file_name_sanitized() }