From d59d3bcd9ad25e5b16cf175141234b7b337d0c99 Mon Sep 17 00:00:00 2001 From: "mark.dickinson" Date: Mon, 4 Jan 2010 21:32:02 +0000 Subject: [PATCH] Fix typo in comment. git-svn-id: http://svn.python.org/projects/python/trunk@77302 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Python/dtoa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.11.4.GIT