Correct typo in comment.
diff --git a/Python/pystrtod.c b/Python/pystrtod.c
index 27ddc94..909e021 100644
--- a/Python/pystrtod.c
+++ b/Python/pystrtod.c
@@ -104,7 +104,7 @@
 	_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;