From 16b4bac35510216f2cc28f12fc0a5afbf42c6223 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 17 Apr 2019 07:32:23 -0400 Subject: [PATCH] Fix typo in comment. --- libguile/numbers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1