]> granicus.if.org Git - python/commitdiff
Fix typo.
authorGeorg Brandl <georg@python.org>
Tue, 28 Oct 2014 21:24:46 +0000 (22:24 +0100)
committerGeorg Brandl <georg@python.org>
Tue, 28 Oct 2014 21:24:46 +0000 (22:24 +0100)
Modules/_math.c

index a14ff0605f488243f9d45a3e13f20e9dd7b8ce6e..a0022082908d14fa2daecfde4f56c9f1db566f82 100644 (file)
@@ -240,7 +240,7 @@ _Py_log1p(double x)
         return x;
     }
     else if (-0.5 <= x && x <= 1.) {
-        /* WARNING: it's possible than an overeager compiler
+        /* WARNING: it's possible that an overeager compiler
            will incorrectly optimize the following two lines
            to the equivalent of "return log(1.+x)". If this
            happens, then results from log1p will be inaccurate