Skip to content

Commit

Permalink
spelling: indices
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Mar 18, 2016
1 parent 6d52be2 commit e5b011f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ImageFormats/Filesystems/miniudf.h
Expand Up @@ -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;
Expand Down

0 comments on commit e5b011f

Please sign in to comment.