aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2020-07-01 14:53:30 +0000
committerJoseph Myers <joseph@codesourcery.com>2020-07-01 14:53:30 +0000
commitc6aac3bf3663709cdefde5f5d5e9e875d607be5e (patch)
treeb512779c3757cb5eb8af69daba81702a63fb663e
parent09555b9721d090f7917f8221be2613a4d6a9b0f6 (diff)
Fix typo in comment in bug 26137 fix.
-rw-r--r--stdlib/strtod_l.c2
1 files changed, 1 insertions, 1 deletions
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;