From 21bfc9ea28bc3c365c84bcf7ccdf3b0535ea2fef Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 4 Jan 2010 21:32:02 +0000 Subject: Fix typo in comment. --- Python/dtoa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/dtoa.c') 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. */ -- cgit v1.2.1