Skip to content

Commit 52f0c56

Browse files
committed
Tweaks.
1 parent ee68aed commit 52f0c56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ SixBitBinarySearch binary = new SixBitBinarySearch(compressedData, false); // fa
128128
int index = binary.search("key");
129129
```
130130
It is important to note that ```compressedData``` does not need to be completely filled. It could have 70 million entries,
131-
for example, and the binary search would still work. This is because the compressed data array typically has extra space
131+
for example, and the binary search would still work. This is because the array of compressed data typically has extra space
132132
to accommodate new entries (usually with some incremental ID implementation to avoid adding in the middle, but always at
133133
the end of the array), so unused slots (nulls) are placed at the end.
134134

0 commit comments

Comments
 (0)