Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/ntfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Finck <colin@reactos.org>2022-01-13 21:27:34 +0300
committerColin Finck <colin@reactos.org>2022-01-13 21:27:34 +0300
commit252a6467abbc57d67dbad4143d06f6d54660e769 (patch)
tree8e3f2a77465b4311f32b3b62b549b2c9bc9df5ba /src/indexes/mod.rs
parentad187486b7d8641248550c056bf972d847edb348 (diff)
Fix some typos.
Diffstat (limited to 'src/indexes/mod.rs')
-rw-r--r--src/indexes/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indexes/mod.rs b/src/indexes/mod.rs
index 6baf344..a912bf7 100644
--- a/src/indexes/mod.rs
+++ b/src/indexes/mod.rs
@@ -6,7 +6,7 @@
//! Thanks to Rust's typesystem, the traits make using the various types of NTFS indexes (and their distinct key
//! and data types) possible in a typesafe way.
//!
-//! NTFS uses B-tree indexes to quickly look up directories, Object IDs, Reparse Points, Security Descriptors, etc.
+//! NTFS uses B-tree indexes to quickly look up files, Object IDs, Reparse Points, Security Descriptors, etc.
//! They are described via [`NtfsIndexRoot`] and [`NtfsIndexAllocation`] attributes, which can be comfortably
//! accessed via [`NtfsIndex`].
//!