summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorH. Joe Lee <hyoklee@hdfgroup.org>2024-02-06 15:48:08 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2024-02-14 21:45:08 (GMT)
commit79073a61a355a9d6e841414fd81db1028dd2057d (patch)
treecc0533132986eebf5a54c6fc9733844b7d0b2acb /src
parent865a484fec3cde4175fbf683d78abc8f7504c00c (diff)
downloadhdf5-79073a61a355a9d6e841414fd81db1028dd2057d.zip
hdf5-79073a61a355a9d6e841414fd81db1028dd2057d.tar.gz
hdf5-79073a61a355a9d6e841414fd81db1028dd2057d.tar.bz2
chore: fix typo (#3989)
close #144
Diffstat (limited to 'src')
-rw-r--r--src/H5checksum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5checksum.c b/src/H5checksum.c
index 66a6c86..6eafc0d 100644
--- a/src/H5checksum.c
+++ b/src/H5checksum.c
@@ -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.