]> granicus.if.org Git - python/commitdiff
Correct typo in comment.
authorMark Dickinson <dickinsm@gmail.com>
Fri, 22 Jan 2010 16:18:09 +0000 (16:18 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Fri, 22 Jan 2010 16:18:09 +0000 (16:18 +0000)
Python/pystrtod.c

index 27ddc941c2dd1cd8f2e7fa07cd3384628c3eb253..909e0210ea2c1e5ce05d62fe02d816b9a4269ef1 100644 (file)
@@ -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;