From c6aac3bf3663709cdefde5f5d5e9e875d607be5e Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 1 Jul 2020 14:53:30 +0000 Subject: Fix typo in comment in bug 26137 fix. --- stdlib/strtod_l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib') diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c index 158da787a2..64fc63e47f 100644 --- a/stdlib/strtod_l.c +++ b/stdlib/strtod_l.c @@ -1648,7 +1648,7 @@ ____STRTOF_INTERNAL (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group, d1 = den[densize - 2]; /* The division does not work if the upper limb of the two-limb - numerator is greater or equal to than the denominator. */ + numerator is greater than or equal to the denominator. */ if (__mpn_cmp (num, &den[densize - numsize], numsize) >= 0) num[numsize++] = 0; -- cgit 1.4.1