summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-06 23:57:10 (GMT)
committerGitHub <noreply@github.com>2021-10-06 23:57:10 (GMT)
commit5f401f10400123afa9171548c432ea3fc37c0736 (patch)
treeff6d1e214f02b837c06e1bdf7fcab735e7af612c /Objects/floatobject.c
parentdb72e58ea5940c3942ede9f70cb897510b52fc36 (diff)
downloadcpython-5f401f10400123afa9171548c432ea3fc37c0736.zip
cpython-5f401f10400123afa9171548c432ea3fc37c0736.tar.gz
cpython-5f401f10400123afa9171548c432ea3fc37c0736.tar.bz2
Fix typos in the Objects directory (GH-28766)
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 92faa7c..e4ce7e7 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -2350,7 +2350,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)