From e5b011f4fc57567f8b9d6264484a76f00169a12e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 18 Mar 2016 15:54:50 +0000 Subject: [PATCH] spelling: indices --- ImageFormats/Filesystems/miniudf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ImageFormats/Filesystems/miniudf.h b/ImageFormats/Filesystems/miniudf.h index a2fb1c0..eabb4a8 100644 --- a/ImageFormats/Filesystems/miniudf.h +++ b/ImageFormats/Filesystems/miniudf.h @@ -174,7 +174,7 @@ class UDFDisc static SectorIndex TransformKey(SectorIndex idx) { //To efficiently support highly fragmented partitions, this function should perform a one-to-one non-monotonic transformation of idx. - //I.e. when we are adding increasing indicies (e.g. 0, 100, 200, 500), the transformation result should not monotonically grow (e.g. 1,2,7,123) + //I.e. when we are adding increasing indices (e.g. 0, 100, 200, 500), the transformation result should not monotonically grow (e.g. 1,2,7,123) //or drop (e.g. 123,100,20,3). Instead, the result should change pseudorandomly (e.g. 100, 2, 500, 144). This will ensure maximum performance //with the trees used by m_Extents return idx;