diff options
author | brucec <brucec@FreeBSD.org> | 2011-02-21 09:01:34 +0000 |
---|---|---|
committer | brucec <brucec@FreeBSD.org> | 2011-02-21 09:01:34 +0000 |
commit | 6d9b42b4862ca331b22065d875de9cad9da72658 (patch) | |
tree | 1f08a200604ea39c38fc67b8558b5638a6dfba0d /lib/libc/powerpc | |
parent | 879ce9c16d5491279b3bcbf139b4b4a967fb3fab (diff) | |
download | FreeBSD-src-6d9b42b4862ca331b22065d875de9cad9da72658.zip FreeBSD-src-6d9b42b4862ca331b22065d875de9cad9da72658.tar.gz |
Fix typos - remove duplicate "the".
PR: bin/154928
Submitted by: Eitan Adler <lists at eitanadler.com>
MFC after: 3 days
Diffstat (limited to 'lib/libc/powerpc')
-rw-r--r-- | lib/libc/powerpc/gen/modf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/powerpc/gen/modf.c b/lib/libc/powerpc/gen/modf.c index 37786dc..612c506 100644 --- a/lib/libc/powerpc/gen/modf.c +++ b/lib/libc/powerpc/gen/modf.c @@ -86,7 +86,7 @@ modf(val, iptr) * If you look at the math involved for a few seconds, it's * plain to see that the integral part is the input, with the * low (DBL_FRACBITS - (exponent - DBL_EXP_BIAS)) bits zeroed, - * the the fractional part is the part with the rest of the + * the fractional part is the part with the rest of the * bits zeroed. Just zeroing the high bits to get the * fractional part would yield a fraction in need of * normalization. Therefore, we take the easy way out, and |