Skip to content

Commit

Permalink
chore: fix typo (#3989)
Browse files Browse the repository at this point in the history
close #144
  • Loading branch information
hyoklee authored Feb 6, 2024
1 parent 255ab71 commit 33ae371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ the return value. Two keys differing by one or two bits will have
totally different hash values.
The best hash table sizes are powers of 2. There is no need to do
mod a prime (mod is sooo slow!). If you need less than 32 bits,
mod a prime (mod is so slow!). If you need less than 32 bits,
use a bitmask. For example, if you need only 10 bits, do
h = (h & hashmask(10));
In which case, the hash table should have hashsize(10) elements.
Expand Down

0 comments on commit 33ae371

Please sign in to comment.