guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 02/07: Fix typo in comment.


From: Mark H. Weaver
Subject: [Guile-commits] 02/07: Fix typo in comment.
Date: Tue, 7 May 2019 04:46:49 -0400 (EDT)

mhw pushed a commit to branch stable-2.2
in repository guile.

commit 16b4bac35510216f2cc28f12fc0a5afbf42c6223
Author: Mark H Weaver <address@hidden>
Date:   Wed Apr 17 07:32:23 2019 -0400

    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 1a04cca..31fdee4 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);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]