[Python-checkins] r77691 - python/trunk/Python/pystrtod.c

mark.dickinson python-checkins at python.org
Fri Jan 22 17:18:09 CET 2010


Author: mark.dickinson
Date: Fri Jan 22 17:18:09 2010
New Revision: 77691

Log:
Correct typo in comment.

Modified:
   python/trunk/Python/pystrtod.c

Modified: python/trunk/Python/pystrtod.c
==============================================================================
--- python/trunk/Python/pystrtod.c	(original)
+++ python/trunk/Python/pystrtod.c	Fri Jan 22 17:18:09 2010
@@ -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;


More information about the Python-checkins mailing list