diff options
author | Joseph Myers <joseph@codesourcery.com> | 2020-07-01 14:53:30 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2020-07-01 14:53:30 +0000 |
commit | c6aac3bf3663709cdefde5f5d5e9e875d607be5e (patch) | |
tree | b512779c3757cb5eb8af69daba81702a63fb663e /stdlib | |
parent | 09555b9721d090f7917f8221be2613a4d6a9b0f6 (diff) | |
download | glibc-c6aac3bf3663709cdefde5f5d5e9e875d607be5e.zip glibc-c6aac3bf3663709cdefde5f5d5e9e875d607be5e.tar.gz glibc-c6aac3bf3663709cdefde5f5d5e9e875d607be5e.tar.bz2 |
Fix typo in comment in bug 26137 fix.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/strtod_l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c index 158da78..64fc63e 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; |