summaryrefslogtreecommitdiffstats
path: root/src/H5checksum.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5checksum.c')
-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.