Fix spelling error in comment (GH-28696)

This commit is contained in:
Raymond Hettinger 2021-10-02 13:52:05 -05:00 committed by GitHub
parent db91b058d5
commit dc878240dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@
reduces the cost of hash collisions because consecutive memory accesses
tend to be much cheaper than scattered probes. After LINEAR_PROBES steps,
we then use more of the upper bits from the hash value and apply a simple
linear congruential random number genearator. This helps break-up long
linear congruential random number generator. This helps break-up long
chains of collisions.
All arithmetic on hash should ignore overflow.