diff options
author | Erich Ritz <erichritz@gmail.com> | 2010-11-01 14:50:24 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2010-11-01 14:50:24 -0400 |
commit | 0e012e8734d454f85bb1e3a50167dd61000b6ce4 (patch) | |
tree | 02b618781e4ef0efb7cc985e0f76ebb25cebd4b6 /math | |
parent | de0ff7bcf6c91940bcb2c9d1c915738839612d60 (diff) | |
download | glibc-0e012e8734d454f85bb1e3a50167dd61000b6ce4.tar.gz glibc-0e012e8734d454f85bb1e3a50167dd61000b6ce4.tar.xz glibc-0e012e8734d454f85bb1e3a50167dd61000b6ce4.zip |
Fix typo in comment.
Diffstat (limited to 'math')
-rw-r--r-- | math/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/math.h b/math/math.h index 4e65678b8d..aeb54d9ed8 100644 --- a/math/math.h +++ b/math/math.h @@ -261,7 +261,7 @@ enum ? __isnan (x) : __isnanl (x)) # endif -/* Return nonzero value is X is positive or negative infinity. */ +/* Return nonzero value if X is positive or negative infinity. */ # ifdef __NO_LONG_DOUBLE_MATH # define isinf(x) \ (sizeof (x) == sizeof (float) ? __isinff (x) : __isinf (x)) |