summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-04 21:32:02 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-01-04 21:32:02 (GMT)
commit2bcd17727027b6c923340209f8c6b92e34c69556 (patch)
tree811a6d8b97ff2a832190bc3758d911d74b4ea36d /Python
parent81982566aaed700e16ad0a4ef5b85e4555d79da7 (diff)
downloadcpython-2bcd17727027b6c923340209f8c6b92e34c69556.zip
cpython-2bcd17727027b6c923340209f8c6b92e34c69556.tar.gz
cpython-2bcd17727027b6c923340209f8c6b92e34c69556.tar.bz2
Fix typo in comment.
Diffstat (limited to 'Python')
-rw-r--r--Python/dtoa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dtoa.c b/Python/dtoa.c
index 1cac941..4f8bab7 100644
--- a/Python/dtoa.c
+++ b/Python/dtoa.c
@@ -927,7 +927,7 @@ b2d(Bigint *a, int *e)
Given a finite nonzero double d, return an odd Bigint b and exponent *e
such that fabs(d) = b * 2**e. On return, *bbits gives the number of
- significant bits of e; that is, 2**(*bbits-1) <= b < 2**(*bbits).
+ significant bits of b; that is, 2**(*bbits-1) <= b < 2**(*bbits).
If d is zero, then b == 0, *e == -1010, *bbits = 0.
*/