Commit 86db3420 authored by Mark Dickinson's avatar Mark Dickinson

Correct typo in comment.

parent 0d948ac9
...@@ -104,7 +104,7 @@ _PyOS_ascii_strtod(const char *nptr, char **endptr) ...@@ -104,7 +104,7 @@ _PyOS_ascii_strtod(const char *nptr, char **endptr)
_Py_SET_53BIT_PRECISION_END; _Py_SET_53BIT_PRECISION_END;
if (*endptr == nptr) if (*endptr == nptr)
/* string might represent and inf or nan */ /* string might represent an inf or nan */
result = _Py_parse_inf_or_nan(nptr, endptr); result = _Py_parse_inf_or_nan(nptr, endptr);
return result; return result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment