]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix missing word in sys.float_info docstring (GH-93489)
authorMark Dickinson <dickinsm@gmail.com>
Sat, 4 Jun 2022 16:28:14 +0000 (17:28 +0100)
committerGitHub <noreply@github.com>
Sat, 4 Jun 2022 16:28:14 +0000 (17:28 +0100)
Objects/floatobject.c

index 86861b7e28dcebd68cdad09f095d6a9ca640a36b..47d308b8eb3702b03d760509a07d53452e96b2c7 100644 (file)
@@ -71,7 +71,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
     {"min_exp",         "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
                     "is a normalized float"},
     {"min_10_exp",      "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
-                    "a normalized"},
+                    "a normalized float"},
     {"dig",             "DBL_DIG -- maximum number of decimal digits that "
                     "can be faithfully represented in a float"},
     {"mant_dig",        "DBL_MANT_DIG -- mantissa digits"},