From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 2 Oct 2021 19:33:49 +0000 (-0700) Subject: Fix spelling error in comment (GH-28696) (GH-28699) X-Git-Tag: v3.10.1~232 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ba61f488da2e092a81c3d126c5827dad6ab2006;p=thirdparty%2FPython%2Fcpython.git Fix spelling error in comment (GH-28696) (GH-28699) --- diff --git a/Objects/setobject.c b/Objects/setobject.c index caff85c9e389..9d4cfd35e328 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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.