From 6435c8da6adf867cd231547643d7840e4ff23d2b Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 8 Apr 2026 11:01:29 +0800 Subject: [PATCH] docs: fix purportedly wording in file index docs Signed-off-by: Codex --- src/file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file.rs b/src/file.rs index 67abfcf..963245a 100644 --- a/src/file.rs +++ b/src/file.rs @@ -115,7 +115,7 @@ impl Information { self.0.nNumberOfLinks as u64 } - /// Return the index of this file. The index of a file is a purpotedly + /// Return the index of this file. The index of a file is a purportedly /// unique identifier for a file within a particular volume. pub fn file_index(&self) -> u64 { ((self.0.nFileIndexHigh as u64) << 32) | (self.0.nFileIndexLow as u64)