Skip to content

Commit

Permalink
chore: fix typo (HDFGroup#3989)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored and lrknox committed Feb 14, 2024
1 parent 865a484 commit 79073a6
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 79073a6

Please sign in to comment.