From 80e8e28cf97fb0994c48daa25256fe5644a7194a Mon Sep 17 00:00:00 2001 From: rohan436 Date: Sat, 28 Mar 2026 12:05:10 +0800 Subject: [PATCH] docs: fix typo in file index docs --- 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)