]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix spelling error in comment (GH-28696)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Sat, 2 Oct 2021 18:52:05 +0000 (13:52 -0500)
committerGitHub <noreply@github.com>
Sat, 2 Oct 2021 18:52:05 +0000 (13:52 -0500)
Objects/setobject.c

index a3cdd33664d0897c50cafa1757051d62a7667da3..f71417d9f6dedd7191a7496a307e5d870ea4c9c6 100644 (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.