File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ as necessary to represent the exponent.
297297/* Ensure that any exponent, if present, is at least MIN_EXPONENT_DIGITS
298298 in length. */
299299Py_LOCAL_INLINE (void )
300- ensure_minumim_exponent_length (char * buffer , size_t buf_size )
300+ ensure_minimum_exponent_length (char * buffer , size_t buf_size )
301301{
302302 char * p = strpbrk (buffer , "eE" );
303303 if (p && (* (p + 1 ) == '-' || * (p + 1 ) == '+' )) {
@@ -498,7 +498,7 @@ PyOS_ascii_formatd(char *buffer,
498498 for the extra zeros. Also, if there are more than
499499 MIN_EXPONENT_DIGITS, remove as many zeros as possible until we get
500500 back to MIN_EXPONENT_DIGITS */
501- ensure_minumim_exponent_length (buffer , buf_size );
501+ ensure_minimum_exponent_length (buffer , buf_size );
502502
503503 /* If format_char is 'Z', make sure we have at least one character
504504 after the decimal point (and make sure we have a decimal point). */
You can’t perform that action at this time.
0 commit comments