From 86db34207c34570c5ca9bfda62875c0e9fb4c869 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Fri, 22 Jan 2010 16:18:09 +0000 Subject: [PATCH] Correct typo in comment. --- Python/pystrtod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 27ddc941c2dd1c..909e0210ea2c1e 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;