Skip to content

Commit e12f34b

Browse files
authored
Fix missing word in sys.float_info docstring (GH-93489)
1 parent 8150b8c commit e12f34b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/floatobject.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static PyStructSequence_Field floatinfo_fields[] = {
7171
{"min_exp", "DBL_MIN_EXP -- minimum int e such that radix**(e-1) "
7272
"is a normalized float"},
7373
{"min_10_exp", "DBL_MIN_10_EXP -- minimum int e such that 10**e is "
74-
"a normalized"},
74+
"a normalized float"},
7575
{"dig", "DBL_DIG -- maximum number of decimal digits that "
7676
"can be faithfully represented in a float"},
7777
{"mant_dig", "DBL_MANT_DIG -- mantissa digits"},

0 commit comments

Comments
 (0)