From: Mark Dickinson Date: Fri, 22 Jan 2010 16:18:09 +0000 (+0000) Subject: Correct typo in comment. X-Git-Tag: v2.7a3~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86db34207c34570c5ca9bfda62875c0e9fb4c869;p=python Correct typo in comment. --- diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 27ddc941c2..909e0210ea 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c @@ -104,7 +104,7 @@ _PyOS_ascii_strtod(const char *nptr, char **endptr) _Py_SET_53BIT_PRECISION_END; 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); return result;