summaryrefslogtreecommitdiff
path: root/Python/dtoa.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-04 21:32:02 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-01-04 21:32:02 +0000
commit21bfc9ea28bc3c365c84bcf7ccdf3b0535ea2fef (patch)
tree1b0bbcf7886e93e61f9fb5b0d8acfab7f0cc1b3a /Python/dtoa.c
parent7cfabc798a2ceb4a467be59b2f079cc819941a53 (diff)
downloadcpython-21bfc9ea28bc3c365c84bcf7ccdf3b0535ea2fef.tar.gz
Fix typo in comment.
Diffstat (limited to 'Python/dtoa.c')
-rw-r--r--Python/dtoa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dtoa.c b/Python/dtoa.c
index 1cac941748..4f8bab7860 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.
*/