aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-28 22:24:46 +0100
committerGeorg Brandl <georg@python.org>2014-10-28 22:24:46 +0100
commite48ec212e886d8bb5be6613401dd53bc8cdc4f6d (patch)
treec3dfa85268fdfa72db40f9d4952b32f56861f7cc /Modules/_math.c
parentCloses #22736: move seealso to the bottom of the section about RE syntax. (diff)
downloadcpython-e48ec212e886d8bb5be6613401dd53bc8cdc4f6d.tar.gz
cpython-e48ec212e886d8bb5be6613401dd53bc8cdc4f6d.tar.bz2
cpython-e48ec212e886d8bb5be6613401dd53bc8cdc4f6d.zip
Fix typo.
Diffstat (limited to 'Modules/_math.c')
-rw-r--r--Modules/_math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_math.c b/Modules/_math.c
index a14ff0605f..a002208290 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