From: Mark H Weaver Date: Wed, 17 Apr 2019 11:32:23 +0000 (-0400) Subject: Fix typo in comment. X-Git-Tag: v2.9.2~2^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16b4bac35510216f2cc28f12fc0a5afbf42c6223;p=platform%2Fupstream%2Fguile.git Fix typo in comment. --- diff --git a/libguile/numbers.c b/libguile/numbers.c index 1a04cca43..31fdee47a 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -586,7 +586,7 @@ scm_i_divide2double (SCM n, SCM d) mpz_mul_2exp (hi, lo, 1); /* Adjust e as needed to satisfy the inequality lo <= x < hi, - (but without making e less then the minimum exponent) */ + (but without making e less than the minimum exponent) */ while (mpz_cmp (x, lo) < 0 && e > DBL_MIN_EXP - DBL_MANT_DIG) { mpz_mul_2exp (x, x, 1);