From: Georg Brandl Date: Tue, 28 Oct 2014 21:24:46 +0000 (+0100) Subject: Fix typo. X-Git-Tag: v3.4.3rc1~427 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e48ec212e886d8bb5be6613401dd53bc8cdc4f6d;p=thirdparty%2FPython%2Fcpython.git Fix typo. --- diff --git a/Modules/_math.c b/Modules/_math.c index a14ff0605f48..a0022082908d 100644 --- a/Modules/_math.c +++ b/Modules/_math.c @@ -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