diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 14:09:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 14:09:41 (GMT) |
commit | 960e7b3ba13b26f45775551ab6f3c062b8666b74 (patch) | |
tree | b6f62c7f34c7abb52dc3704389e8b38087fb0545 /Objects/floatobject.c | |
parent | 71d56a72313d66e73ca1b61130d2e617235c8a93 (diff) | |
download | cpython-960e7b3ba13b26f45775551ab6f3c062b8666b74.zip cpython-960e7b3ba13b26f45775551ab6f3c062b8666b74.tar.gz cpython-960e7b3ba13b26f45775551ab6f3c062b8666b74.tar.bz2 |
[3.9] Fix typos in the Objects directory (GH-28766) (GH-28795)
(cherry picked from commit 5f401f10400123afa9171548c432ea3fc37c0736)
Automerge-Triggered-By: GH:JulienPalard
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r-- | Objects/floatobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 6adc90a..8538a05 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -2291,7 +2291,7 @@ _PyFloat_Pack8(double x, unsigned char *p, int le) flo = 0; ++fhi; if (fhi >> 28) { - /* And it also progagated out of the next 28 bits. */ + /* And it also propagated out of the next 28 bits. */ fhi = 0; ++e; if (e >= 2047) |